HomeSort by relevance Sort by last modified time
    Searched full:listview (Results 76 - 100 of 1393) sorted by null

1 2 34 5 6 7 8 91011>>

  /development/samples/ApiDemos/src/com/example/android/apis/view/
LayoutAnimation2.java 27 import android.widget.ListView;
51 ListView listView = getListView();
52 listView.setLayoutAnimation(controller);
LinearLayout9.java 23 import android.widget.ListView;
36 ListView list = (ListView) findViewById(R.id.list);
List15.java 27 import android.widget.ListView;
31 * This demo illustrates the use of CHOICE_MODE_MULTIPLE_MODAL, a.k.a. selection mode on ListView.
37 ListView lv = getListView();
38 lv.setChoiceMode(ListView.CHOICE_MODE_MULTIPLE_MODAL);
50 private class ModeCallback implements ListView.MultiChoiceModeListener {
List16.java 27 import android.widget.ListView;
31 * This demo illustrates the use of CHOICE_MODE_MULTIPLE_MODAL, a.k.a. selection mode on ListView
39 ListView lv = getListView();
40 lv.setChoiceMode(ListView.CHOICE_MODE_MULTIPLE_MODAL);
52 private class ModeCallback implements ListView.MultiChoiceModeListener {
SplitTouchView.java 27 import android.widget.ListView;
41 ListView list1 = (ListView) findViewById(R.id.list1);
42 ListView list2 = (ListView) findViewById(R.id.list2);
  /development/samples/browseable/BasicSyncAdapter/
_index.jd 12 inside a ListView.
  /development/samples/devbytes/animation/ListViewRemovalAnimation/src/com/example/android/listviewremovalanimation/
ListViewRemovalAnimation.java 28 import android.widget.ListView;
31 * This example shows how to use a swipe effect to remove items from a ListView,
41 ListView mListView;
56 mListView = (ListView) findViewById(R.id.listview);
173 * This method animates all other views in the ListView container (not including ignoreView)
179 private void animateRemoval(final ListView listview, View viewToRemove) {
180 int firstVisiblePosition = listview.getFirstVisiblePosition();
181 for (int i = 0; i < listview.getChildCount(); ++i)
    [all...]
  /external/chromium_org/content/test/data/accessibility/
aria-combobox-expected-android.txt 5 android.widget.ListView collection item_count=2 row_count=2
  /external/replicaisland/res/layout/
level_select.xml 7 <ListView android:id="@+id/android:list"
  /frameworks/base/core/tests/coretests/src/android/widget/listview/
ListHeterogeneousTest.java 17 package android.widget.listview;
24 import android.widget.ListView;
26 import android.widget.listview.ListHeterogeneous;
30 private ListView mListView;
ListSetSelectionTest.java 17 package android.widget.listview;
22 import android.widget.ListView;
29 private ListView mListView;
70 mListView.setSelection(ListView.INVALID_POSITION);
  /frameworks/base/core/tests/coretests/src/android/widget/listview/arrowscroll/
ListWithSeparatorsTest.java 17 package android.widget.listview.arrowscroll;
21 import android.widget.ListView;
23 import android.widget.listview.ListWithSeparators;
27 private ListView mListView;
  /frameworks/base/core/tests/coretests/src/android/widget/listview/focus/
ListHorizontalFocusWithinItemWinsTest.java 17 package android.widget.listview.focus;
19 import android.widget.listview.ListHorizontalFocusWithinItemWins;
27 import android.widget.ListView;
31 private ListView mListView;
  /frameworks/base/core/tests/coretests/src/android/widget/listview/touch/
ListGetSelectedViewTest.java 17 package android.widget.listview.touch;
23 import android.widget.ListView;
26 import android.widget.listview.ListGetSelectedView;
34 private ListView mListView;
  /frameworks/base/tests/RenderThreadTest/res/layout/
activity_main.xml 7 <ListView android:id="@android:id/list"
  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapEmailSettings.java 48 /* update expandable listview with correct items */
49 ExpandableListView listView = (ExpandableListView) findViewById(R.id.bluetooth_map_email_settings_list_view);
51 BluetoothMapEmailSettingsAdapter adapter = new BluetoothMapEmailSettingsAdapter(this,listView, mGroups, mLoader.getAccountsEnabledCount());
52 listView.setAdapter(adapter);
  /packages/experimental/NotificationLog/res/layout/
main.xml 7 <ListView android:id="@android:id/list"
  /cts/tests/tests/accessibilityservice/res/layout/
end_to_end_test.xml 24 <ListView android:id="@+id/listview"
27 </ListView>
  /cts/tests/tests/permission/src/android/permission/cts/
PermissionStubActivity.java 24 import android.widget.ListView;
30 private ListView mListView;
36 mListView = new ListView(this);
  /frameworks/base/core/java/android/widget/
HeaderViewListAdapter.java 26 * ListAdapter used when a ListView has header views. This ListAdapter
37 // They are indeed created when declared in ListView and then shared.
38 ArrayList<ListView.FixedViewInfo> mHeaderViewInfos;
39 ArrayList<ListView.FixedViewInfo> mFooterViewInfos;
43 static final ArrayList<ListView.FixedViewInfo> EMPTY_INFO_LIST =
44 new ArrayList<ListView.FixedViewInfo>();
50 public HeaderViewListAdapter(ArrayList<ListView.FixedViewInfo> headerViewInfos,
51 ArrayList<ListView.FixedViewInfo> footerViewInfos,
85 private boolean areAllListInfosSelectable(ArrayList<ListView.FixedViewInfo> infos) {
87 for (ListView.FixedViewInfo info : infos)
    [all...]
  /frameworks/base/tests/HwAccelerationTest/res/layout/
view_layers.xml 22 <ListView
28 <ListView
34 <ListView
  /packages/apps/ContactsCommon/src/com/android/contacts/common/list/
IndexerListAdapter.java 21 import android.widget.ListView;
42 private int position = ListView.INVALID_POSITION;
48 position = ListView.INVALID_POSITION;
150 public void configurePinnedHeaders(PinnedHeaderListView listView) {
151 super.configurePinnedHeaders(listView);
159 listView.setHeaderInvisible(index, false);
161 int listPosition = listView.getPositionAt(listView.getTotalTopPinnedHeaderHeight());
162 int position = listPosition - listView.getHeaderViewsCount();
174 listView.setHeaderInvisible(index, false)
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/
StickyHeaderListView.java 29 import android.widget.ListView;
32 * Implements a ListView class with a sticky header at the top. The header is
37 * 1. The class uses the first available child ListView as the working
38 * ListView. If no ListView child exists, the class will create a default one.
39 * 2. The ListView's adapter must be passed to this class using the 'setAdapter'
41 * is specified, the class will try to extract it from the ListView
43 * ListView needs to receive scroll events, it must register its listener using
47 * since a change the dataset in a listview forces a call to OnScroll. The needed code is
62 protected ListView mListView = null
    [all...]
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/appmenu/
AppMenuDragHelper.java 19 import android.widget.ListView;
67 // If user is dragging and the popup ListView is too big to display at once,
148 final ListView listView = mAppMenu.getPopup().getListView();
188 // Auto scrolling on the top or the bottom of the listView.
189 if (listView.getHeight() > 0) {
191 mItemRowHeight * 1.2f / listView.getHeight());
193 (rawY - getScreenVisibleRect(listView).top) / listView.getHeight();
220 ListView listView = mAppMenu.getPopup().getListView()
    [all...]
  /development/samples/training/basic/FragmentBasics/src/com/example/fragments/
HeadlinesFragment.java 23 import android.widget.ListView;
50 // When in two-pane layout, set the listview to highlight the selected list item
51 // (We do this during onStart because at the point the listview is available.)
53 getListView().setChoiceMode(ListView.CHOICE_MODE_SINGLE);
72 public void onListItemClick(ListView l, View v, int position, long id) {

Completed in 3059 milliseconds

1 2 34 5 6 7 8 91011>>