HomeSort by relevance Sort by last modified time
    Searched full:listview (Results 201 - 225 of 1340) sorted by null

1 2 3 4 5 6 7 891011>>

  /frameworks/support/v4/java/android/support/v4/app/
ListFragment.java 31 import android.widget.ListView;
58 onListItemClick((ListView)parent, v, position, id);
63 ListView mList;
77 * returned view hierarchy <em>must</em> have a ListView whose id
122 ListView lv = new ListView(getActivity());
167 * @param l The ListView where the click happened
168 * @param v The view that was clicked within the ListView
172 public void onListItemClick(ListView l, View v, int position, long id) {
221 public ListView getListView()
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/detail/
ContactDisplayUtils.java 45 import android.widget.ListView;
350 * Returns the top coordinate of the first item in the {@link ListView}. If the first item
351 * in the {@link ListView} is not visible or there are no children in the list, then return
355 public static int getFirstListItemOffset(ListView listView) {
356 if (listView == null || listView.getChildCount() == 0 ||
357 listView.getFirstVisiblePosition() != 0) {
360 return listView.getChildAt(0).getTop();
366 * @param listView that should be scrolle
    [all...]
  /developers/build/prebuilts/gradle/ActionBarCompat-ListPopupMenu/Application/src/main/java/com/example/android/actionbarcompat/listpopupmenu/
PopupListFragment.java 25 import android.widget.ListView;
52 public void onListItemClick(ListView listView, View v, int position, long id) {
53 String item = (String) listView.getItemAtPosition(position);
  /developers/build/prebuilts/gradle/AdapterTransition/Application/src/main/res/layout/
fragment_meat_list.xml 17 <ListView
  /developers/build/prebuilts/gradle/CustomChoiceList/Application/src/main/res/values/
base-strings.xml 23 This sample demonstrates how to create custom checkable layouts, for use with ListView\'s choiceMode
  /developers/build/prebuilts/gradle/RecyclerView/Application/src/main/res/values/
base-strings.xml 23 Demonstration of using RecyclerView with a LayoutManager to create a vertical ListView.
  /developers/samples/android/ui/actionbarcompat/ActionBarCompat-ListPopupMenu/Application/src/main/java/com/example/android/actionbarcompat/listpopupmenu/
PopupListFragment.java 25 import android.widget.ListView;
52 public void onListItemClick(ListView listView, View v, int position, long id) {
53 String item = (String) listView.getItemAtPosition(position);
  /developers/samples/android/ui/actionbarcompat/ActionBarCompat-ListViewModalSelect/Application/src/main/res/values/
strings.xml 20 <em>MULTIPLE_MODAL</em> ListView choice mode, compatible from API v7.
  /developers/samples/android/ui/transition/AdapterTransition/Application/src/main/res/layout/
fragment_meat_list.xml 17 <ListView
  /development/apps/Development/res/layout/
account_list_view.xml 17 <ListView
  /development/samples/ApiDemos/res/layout/
layout_animation_3.xml 17 <ListView xmlns:android="http://schemas.android.com/apk/res/android"
  /development/samples/browseable/ActionBarCompat-ListPopupMenu/src/com.example.android.actionbarcompat.listpopupmenu/
PopupListFragment.java 25 import android.widget.ListView;
52 public void onListItemClick(ListView listView, View v, int position, long id) {
53 String item = (String) listView.getItemAtPosition(position);
  /development/samples/browseable/AdapterTransition/res/layout/
fragment_meat_list.xml 17 <ListView
  /development/samples/browseable/BasicSyncAdapter/
_index.jd 12 displayed inside a {@link android.widget.ListView}.</p>
  /development/samples/browseable/CustomChoiceList/res/values/
base-strings.xml 26 This sample demonstrates how to create custom checkable layouts, for use with ListView\'s choiceMode
  /development/samples/browseable/RecyclerView/res/values/
base-strings.xml 23 Demonstration of using RecyclerView with a LayoutManager to create a vertical ListView.
  /development/samples/devbytes/animation/ListViewCellInsertion/src/com/example/android/insertingcells/
CustomArrayAdapter.java 34 import android.widget.ListView;
41 * This custom array adapter is used to populate the ListView in this application.
98 convertView.setLayoutParams(new ListView.LayoutParams(ListView.LayoutParams
  /development/samples/devbytes/animation/ListViewExpandingCells/src/com/example/android/expandingcells/
CustomArrayAdapter.java 36 import android.widget.ListView;
42 * This is a custom array adapter used to populate the listview whose items will
58 * Populates the item in the listview cell with the appropriate data. This method
89 convertView.setLayoutParams(new ListView.LayoutParams(AbsListView.LayoutParams.MATCH_PARENT,
ExpandingListView.java 31 import android.widget.ListView;
38 * A custom listview which supports the preview of extra content corresponding to each cell
41 public class ExpandingListView extends ListView {
100 * of the listview in order to account for the fact that the bottom bounds of the actual
101 * listview cannot be modified.
147 * 1. Store the current top and bottom bounds of each visible item in the listview.
153 * After invoking a layout to take place, the listview will order all the items
171 * It is important to note that the listview is disabled during the animation
173 * within the listview are not constant during the scroll.
197 /* Add an onPreDraw Listener to the listview. onPreDraw will get invoked after onLayou
    [all...]
  /development/samples/training/AnimationsDemo/res/layout/
activity_main.xml 17 <ListView xmlns:android="http://schemas.android.com/apk/res/android"
  /external/chromium_org/content/test/data/accessibility/
list-markers-expected-android.txt 2 android.widget.ListView collection hierarchical item_count=3 row_count=3
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowListFragment.java 8 import android.widget.ListView;
  /frameworks/base/core/java/android/widget/
WrapperListAdapter.java 23 * @see ListView
  /frameworks/base/core/res/res/layout/
list_content_simple.xml 20 <ListView xmlns:android="http://schemas.android.com/apk/res/android" android:id="@android:id/list"
  /frameworks/base/core/tests/coretests/res/layout/
list_in_horizontal.xml 23 <ListView android:id="@+id/list" />

Completed in 951 milliseconds

1 2 3 4 5 6 7 891011>>