HomeSort by relevance Sort by last modified time
    Searched full:listview (Results 326 - 350 of 1727) sorted by null

<<11121314151617181920>>

  /development/samples/browseable/BluetoothChat/res/layout/
activity_device_list.xml 33 <ListView
52 <ListView
  /development/samples/browseable/MediaBrowserService/res/layout/
fragment_list.xml 54 <ListView
58 </ListView>
  /frameworks/base/core/java/android/widget/
ListAdapter.java 20 * Extended {@link Adapter} that is the bridge between a {@link ListView}
23 * required. The ListView can display any data provided that it is wrapped in a
  /frameworks/base/core/res/res/layout/
text_edit_suggestion_container.xml 30 <ListView
36 </ListView>
  /frameworks/base/core/tests/coretests/src/android/widget/focus/
ListWithFooterViewAndNewLabelsTest.java 25 import android.widget.ListView;
34 private ListView mListView;
  /frameworks/base/docs/html/sdk/api_diff/21/changes/
android.widget.ListView.html 10 android.widget.ListView
74 Class android.widget.<A HREF="../../../../reference/android/widget/ListView.html" target="_top"><font size="+2"><code>ListView</code></font></A>
85 <A NAME="android.widget.ListView.ctor_added(android.content.Context, android.util.AttributeSet, int, int)"></A>
86 <nobr><A HREF="../../../../reference/android/widget/ListView.html#ListView(android.content.Context, android.util.AttributeSet, int, int)" target="_top"><code>ListView</code></A>(<code>Context,</nobr> AttributeSet<nobr>,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
101 <A NAME="android.widget.ListView.setSelectionFromTop_changed(int, int)"></A>
  /frameworks/base/tests/StatusBar/src/com/android/statusbartest/
TestActivity.java 24 import android.widget.ListView;
66 public void onListItemClick(ListView l, View v, int position, long id)
  /frameworks/data-binding/integration-tests/TestApp/app/src/androidTestApi7/java/android/databinding/testapp/
AbsListViewBindingAdapterTest.java 24 import android.widget.ListView;
29 ListView mView;
  /frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/app/
FragmentListArraySupport.java 28 import android.widget.ListView;
57 public void onListItemClick(ListView l, View v, int position, long id) {
  /frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/media/
BrowseFragment.java 33 import android.widget.ListView;
48 * {@link MediaBrowserCompat.MediaItem} objects that can be browsed are shown in a ListView.
185 ListView listView = (ListView) rootView.findViewById(R.id.list_view);
186 listView.setAdapter(mBrowserAdapter);
187 listView.setOnItemClickListener(new AdapterView.OnItemClickListener() {
207 listView.setOnScrollListener(new AbsListView.OnScrollListener() {
  /packages/apps/Contacts/res/layout/
contact_editor_accounts_changed_activity_with_picker.xml 18 Layout for account prompt (which includes a ListView) that can appear when
41 <ListView android:id="@+id/account_list"
contact_tile_list_frequent.xml 18 This is very similar to contact_tile_list.xml (there needs to be a ListView called
35 <ListView
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ui/
SuggestionsView.java 22 import android.widget.ListView;
29 public class SuggestionsView extends ListView implements SuggestionsListView<ListAdapter> {
  /packages/apps/Settings/res/layout/
trusted_credential_list_container.xml 53 <ListView
56 </ListView>
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
AutoResizeListView.java 23 import android.widget.ListView;
29 public class AutoResizeListView extends ListView {
ScrollNotifyingListView.java 23 import android.widget.ListView;
31 public class ScrollNotifyingListView extends ListView implements ScrollNotifier {
MaterialSearchSuggestionsList.java 33 import android.widget.ListView;
84 final ListView listView = (ListView) findViewById(R.id.search_overlay_suggestion_list);
85 listView.setOnItemClickListener(this);
91 listView.setAdapter(mAdapter);
  /packages/services/Telecomm/testapps/res/layout/
incall_screen.xml 22 <ListView
28 </ListView>
  /packages/wallpapers/LivePicker/src/com/android/wallpaper/livepicker/
LiveWallpaperActivity.java 24 import android.widget.ListView;
50 protected void onListItemClick(ListView l, View v, int position, long id) {
  /frameworks/base/core/java/android/accounts/
ChooseAccountActivity.java 32 import android.widget.ListView;
78 ListView list = (ListView) findViewById(android.R.id.list);
82 list.setChoiceMode(ListView.CHOICE_MODE_SINGLE);
86 onListItemClick((ListView)parent, v, position, id);
119 protected void onListItemClick(ListView l, View v, int position, long id) {
  /frameworks/base/core/java/com/android/internal/widget/
WatchHeaderListView.java 25 import android.widget.ListView;
32 public class WatchHeaderListView extends ListView {
50 ArrayList<ListView.FixedViewInfo> headerViewInfos,
51 ArrayList<ListView.FixedViewInfo> footerViewInfos,
125 ArrayList<ListView.FixedViewInfo> headerViewInfos,
126 ArrayList<ListView.FixedViewInfo> footerViewInfos,
  /frameworks/base/tests/BiDiTests/src/com/android/bidi/
BiDiTestActivity.java 32 import android.widget.ListView;
41 private ListView mList;
46 onListItemClick((ListView)parent, v, position, id);
50 private void onListItemClick(ListView lv, View v, int position, long id) {
78 mList = (ListView) findViewById(R.id.testlist);
79 mList.setChoiceMode(ListView.CHOICE_MODE_SINGLE);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/category/
CategoryAdapter.java 23 import android.widget.ListView;
36 private int mItemWidth = ListView.LayoutParams.MATCH_PARENT;
113 new ListView.LayoutParams(width, height));
134 if (mContainer instanceof ListView) {
135 ListView lv = (ListView) mContainer;
  /packages/experimental/LoaderApp/src/com/android/loaderapp/fragments/
ContactsListFragment.java 35 import android.widget.ListView;
54 ListView mList;
95 ListView list = (ListView) inflater.inflate(R.layout.contacts_list, container, false);
131 * {@link ListView} position.
134 if (position == ListView.INVALID_POSITION) {
  /cts/tests/tests/widget/src/android/widget/cts/util/
ListScenario.java 36 import android.widget.ListView;
46 private ListView mListView;
78 public ListView getListView() {
407 * Returns the LinearLayout containing the ListView in this scenario.
409 * @return The LinearLayout in which the ListView is held.
429 * @return The newly created ListView widget.
431 protected ListView createListView() {
432 return new ListView(this);
443 * Sets an adapter on a ListView.
445 * @param listView The ListView to set the adapter on
    [all...]

Completed in 759 milliseconds

<<11121314151617181920>>