HomeSort by relevance Sort by last modified time
    Searched full:listview (Results 251 - 275 of 1115) sorted by null

<<11121314151617181920>>

  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowAlertDialog.java 13 import android.widget.ListView;
44 private ListView listView;
137 public ListView getListView() {
138 if (listView == null) {
139 listView = new ListView(context);
140 listView.setOnItemClickListener(new AdapterView.OnItemClickListener() {
155 return listView;
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
WordListPreference.java 26 import android.widget.ListView;
252 if (!(parent instanceof ListView)) return;
253 final ListView listView = (ListView)parent;
266 indexToOpen = listView.indexOfChild(v);
269 listView.getLastVisiblePosition() - listView.getFirstVisiblePosition();
272 final ButtonSwitcher buttonSwitcher = (ButtonSwitcher)listView.getChildAt(i)
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/
BleServerStartActivity.java 35 import android.widget.ListView;
56 ListView listView = (ListView) findViewById(R.id.ble_server_tests);
57 listView.setAdapter(mTestAdapter);
DevicePickerActivity.java 37 import android.widget.ListView;
71 ListView pairedDevicesListView = (ListView) findViewById(R.id.bt_paired_devices);
79 ListView newDevicesListView = (ListView) findViewById(R.id.bt_new_devices);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/p2p/
P2pTestListActivity.java 29 import android.widget.ListView;
124 * Launch the activity when its {@link ListView} item is clicked.
128 protected void onListItemClick(ListView listView, View view, int position, long id) {
133 super.onListItemClick(listView, view, position, id);
  /development/samples/ApiDemos/src/com/example/android/apis/animation/
Transition3d.java 7 import android.widget.ListView;
20 * ListView and an ImageView. When the user clicks the list, it flips to
29 private ListView mPhotosList;
59 mPhotosList = (ListView) findViewById(android.R.id.list);
63 // Prepare the ListView
  /development/samples/MySampleRss/src/com/example/codelab/rssexample/
MyRssReader3.java 28 import android.widget.ListView;
37 ListView mRssList;
51 // Populate ArrayAdapter and bind it to ListView
52 mRssList = (ListView)findViewById(R.id.rssListView);
63 // We'd like to store the current ListView selection.
MyRssReader4.java 27 import android.widget.ListView;
37 ListView mRssList;
49 // Populate ArrayAdapter and bind it to ListView
50 mRssList = (ListView)findViewById(R.id.rssListView);
74 // We'd like to store the current ListView selection.
  /frameworks/base/docs/html/sdk/api_diff/4/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>
86 <A NAME="android.widget.ListView.getCheckItemIds_added()"></A>
87 <nobr><code>long[]</code>&nbsp;<A HREF="../../../../reference/android/widget/ListView.html#getCheckItemIds()" target="_top"><code>getCheckItemIds</code></A>()</nobr>
  /packages/apps/Settings/tests/src/com/android/settings/tests/
BluetoothRequestPermissionTest.java 32 import android.widget.ListView;
89 ListView listView = (ListView) findViewById(R.id.msg_container);
90 listView.setAdapter(mMsgAdapter);
  /packages/apps/Mms/src/com/android/mms/ui/
ConversationList.java 67 import android.widget.ListView;
143 ListView listView = getListView();
144 listView.setOnCreateContextMenuListener(mConvListOnCreateContextMenuListener);
145 listView.setOnKeyListener(mThreadListKeyListener);
146 listView.setChoiceMode(ListView.CHOICE_MODE_MULTIPLE_MODAL);
147 listView.setMultiChoiceModeListener(new ModeCallback());
150 listView.setEmptyView(findViewById(R.id.empty));
194 ListView listView = getListView()
    [all...]
  /cts/tests/tests/holo/src/android/holo/cts/
HoloTestUtilitiesActivity.java 26 import android.widget.ListView;
84 protected void onListItemClick(ListView listView, View view, int position, long id) {
  /cts/tests/tests/widget/src/android/widget/cts/
LinearLayoutTest.java 31 import android.widget.ListView;
95 ListView lv1 = new ListView(mContext);
99 ListView lv2 = new ListView(mContext);
117 ListView lv1 = new ListView(mContext);
118 ListView lv2 = new ListView(mContext);
119 ListView lv3 = new ListView(mContext)
    [all...]
  /developers/build/prebuilts/gradle/ActionBarCompat-Styled/ActionBarCompat-StyledSample/src/main/res/values/
styles.xml 39 <item name="dropDownListViewStyle">@style/Widget.Styled.ListView.DropDown</item>
77 <style name="Widget.Styled.ListView.DropDown"
78 parent="@style/Widget.AppCompat.Light.ListView.DropDown">
  /developers/samples/android/ui/actionbarcompat/ActionBarCompat-Styled/ActionBarCompat-StyledSample/src/main/res/values/
styles.xml 39 <item name="dropDownListViewStyle">@style/Widget.Styled.ListView.DropDown</item>
77 <style name="Widget.Styled.ListView.DropDown"
78 parent="@style/Widget.AppCompat.Light.ListView.DropDown">
  /development/samples/ApiDemos/src/com/example/android/apis/accessibility/
TaskListView.java 29 import android.widget.ListView;
33 /** Acts as a go-between for all AccessibilityEvents sent from items in the ListView, providing the
37 public class TaskListView extends ListView {
  /development/samples/ContactManager/src/com/example/android/contactmanager/
ContactManager.java 31 import android.widget.ListView;
40 private ListView mContactList;
56 mContactList = (ListView) findViewById(R.id.contactList);
  /development/samples/training/multiscreen/newsreader/src/com/example/android/newsreader/
HeadlinesFragment.java 25 import android.widget.ListView;
119 getListView().setChoiceMode(ListView.CHOICE_MODE_SINGLE);
122 getListView().setChoiceMode(ListView.CHOICE_MODE_NONE);
  /frameworks/base/core/java/android/widget/
ResourceCursorTreeAdapter.java 39 * @param context The context where the ListView associated with this
66 * @param context The context where the ListView associated with this
84 * @param context The context where the ListView associated with this
  /frameworks/base/core/tests/coretests/src/android/widget/focus/
ListOfButtonsTest.java 26 import android.widget.ListView;
32 * a {@link ListView} that has buttons in it.
39 private ListView mListView;
ListOfEditTexts.java 33 private ListView mListView;
36 public ListView getListView() {
61 mListView = new ListView(this);
  /frameworks/base/core/tests/coretests/src/android/widget/listview/
ListEmptyViewTest.java 17 package android.widget.listview;
26 import android.widget.ListView;
30 private ListView mListView;
ListFocusableTest.java 17 package android.widget.listview;
21 import android.widget.ListView;
27 private ListView mListView;
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/category/
CategoryPanel.java 28 import android.widget.ListView;
123 ListView panel = (ListView) main.findViewById(R.id.listItems);
  /packages/apps/MusicFX/src/com/android/musicfx/
ControlPanelPicker.java 38 import android.widget.ListView;
118 public void onPrepareListView(ListView listView) {

Completed in 292 milliseconds

<<11121314151617181920>>