use of com.abewy.android.apps.klyph.app.IActionbarSpinner in project Klyph by jonathangerbaud.
the class StreamListFragment method onSetToFront.
@Override
public void onSetToFront(Activity activity) {
friendLists = KlyphData.getFriendLists();
if (activity != null && friendLists != null && friendLists.size() > 0) {
FriendList fl = new FriendList();
fl.setOwner(KlyphSession.getSessionUserId());
fl.setName(activity.getString(R.string.fragment_header_newsfeed));
friendLists.add(0, fl);
((IActionbarSpinner) activity).displaySpinnerInActionBar(friendLists, spinnerPosition, this);
activity.setTitle("");
}
}
Aggregations