android.support.v4.app.ListFragment Java Examples
The following examples show how to use
android.support.v4.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: LoadableDecorator.java From android-oauth-client with Apache License 2.0 | 5 votes |
public LoadableDecorator(LoaderCallbacks<Result<T>> callbacks, int loaderId, ListFragment listFragment) { super(); this.mCallbacks = Preconditions.checkNotNull(callbacks); this.mLoaderId = loaderId; this.mListFragment = Preconditions.checkNotNull(listFragment); this.mAdapterView = Preconditions.checkNotNull(listFragment.getListView()); mListFragment.setListShown(false); }
Example #2
Source File: ListFragmentAssert.java From assertj-android with Apache License 2.0 | 4 votes |
public ListFragmentAssert(ListFragment actual) { super(actual, ListFragmentAssert.class); }