use of com.abewy.android.apps.klyph.adapter.MultiObjectAdapter in project Klyph by jonathangerbaud.
the class Threads method onViewCreated.
@Override
public void onViewCreated(View view, Bundle savedInstanceState) {
setListAdapter(new MultiObjectAdapter(getListView()));
defineEmptyText(R.string.empty_list_no_message);
getListView().setDrawSelectorOnTop(false);
getListView().setChoiceMode(ListView.CHOICE_MODE_SINGLE);
setListVisible(false);
setRequestType(Query.THREADS);
super.onViewCreated(view, savedInstanceState);
}
use of com.abewy.android.apps.klyph.adapter.MultiObjectAdapter in project Klyph by jonathangerbaud.
the class PageAbout method onViewCreated.
@Override
public void onViewCreated(View view, Bundle savedInstanceState) {
defineEmptyText(R.string.empty_list_no_data);
setRequestType(Query.PAGE);
setListVisible(false);
super.onViewCreated(view, savedInstanceState);
setListAdapter(new MultiObjectAdapter(getListView()));
}
Aggregations