android.app.ListFragment Java Examples

The following examples show how to use android.app.ListFragment. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: ListFragmentTag.java    From rss with GNU General Public License v3.0 5 votes vote down vote up
static
AdapterFeedItems getFavouritesAdapter(Activity activity)
{
    FragmentManager manager = activity.getFragmentManager();
    ListFragment fragment = (ListFragment) manager.findFragmentById(R.id.fragment_favourites);
    return (AdapterFeedItems) fragment.getListAdapter();
}
 
Example #2
Source File: AsyncManageAdapter.java    From rss with GNU General Public License v3.0 4 votes vote down vote up
public
AsyncManageAdapter(FeedsActivity activity, ListFragment listFragment)
{
    m_activity = activity;
    m_listFragment = listFragment;
}
 
Example #3
Source File: ListFragmentAssert.java    From assertj-android with Apache License 2.0 4 votes vote down vote up
public ListFragmentAssert(ListFragment actual) {
  super(actual, ListFragmentAssert.class);
}