hide feed_title in offline mode

This commit is contained in:
Andrew Dolgov 2012-06-20 15:25:17 +04:00
parent f532761611
commit cd0cbcbd5a

View File

@ -301,6 +301,12 @@ public class OfflineHeadlinesFragment extends Fragment implements OnItemClickLis
}
}
TextView ft = (TextView)v.findViewById(R.id.feed_title);
if (ft != null) {
ft.setVisibility(View.GONE);
}
ImageView marked = (ImageView)v.findViewById(R.id.marked);
if (marked != null) {