private Favorite createFavorite() {
if (mTitleRb.isSelected()) {
String title = mProgramNameTf.getText();
if (title != null && title.length() > 0) {
return new TitleFavorite(title);
}
} else if (mTopicRb.isSelected()) {
String topic = mTopicTf.getText();
if (topic != null && topic.length() > 0) {
return new TopicFavorite(topic);