HomeSort by relevance Sort by last modified time
    Searched refs:ListView (Results 251 - 275 of 410) sorted by null

<<11121314151617

  /packages/apps/Settings/src/com/android/settings/
BandMode.java 16 import android.widget.ListView;
49 private ListView mBandList;
70 mBandList = (ListView) findViewById(R.id.band);
UsageStats.java 45 import android.widget.ListView;
57 private ListView mListView;
165 // by ListView is null.
233 mListView = (ListView) findViewById(R.id.pkg_list);
UserDictionarySettings.java 44 import android.widget.ListView;
120 final ListView listView = getListView();
121 listView.setAdapter(createAdapter());
122 listView.setFastScrollEnabled(true);
123 listView.setEmptyView(emptyView);
161 public void onListItemClick(ListView l, View v, int position, long id) {
  /development/apps/CustomLocale/src/com/android/customlocale2/
CustomLocaleActivity.java 43 import android.widget.ListView;
71 private ListView mListView;
111 mListView = (ListView) findViewById(android.R.id.list);
112 mListView.setChoiceMode(ListView.CHOICE_MODE_SINGLE);
171 protected void onListItemClick(ListView l, View v, int position, long id) {
  /packages/apps/KeyChain/src/com/android/keychain/
KeyChainActivity.java 40 import android.widget.ListView;
156 final ListView lv = (ListView) View.inflate(this, R.layout.cert_chooser, null);
309 ListView lv = (ListView)parent;
  /frameworks/base/core/java/com/android/internal/app/
MediaRouteChooserDialogFragment.java 45 import android.widget.ListView;
79 private ListView mListView;
179 final ListView list = (ListView) layout.findViewById(R.id.list);
206 private class RouteAdapter extends BaseAdapter implements ListView.OnItemClickListener {
412 final ListView list = (ListView) parent;
  /cts/tests/tests/widget/src/android/widget/cts/
TableLayoutTest.java 33 import android.widget.ListView;
96 tableLayout.addView(new ListView(mContext));
395 View child3 = new ListView(mContext);
431 View child3 = new ListView(mContext);
441 tableLayout.addView(new ListView(mContext), Integer.MAX_VALUE);
485 tableLayout.addView(new ListView(mContext), null);
518 View child3 = new ListView(mContext);
520 tableLayout.addView(child3, -1, new ListView.LayoutParams(300, 400));
535 tableLayout.addView(new ListView(mContext), Integer.MAX_VALUE,
548 tableLayout.addView(new ListView(mContext), -1, null)
    [all...]
TabWidgetTest.java 26 import android.widget.ListView;
183 mockTabWidget.addView(new ListView(mActivity));
  /packages/providers/DownloadProvider/ui/src/com/android/providers/downloads/ui/
DownloadList.java 51 import android.widget.ListView;
74 private ListView mSizeOrderedListView;
109 private ListView mCurrentView;
236 mDateOrderedListView.setChoiceMode(ListView.CHOICE_MODE_MULTIPLE_MODAL);
256 mSizeOrderedListView = (ListView) findViewById(R.id.size_ordered_list);
257 mSizeOrderedListView.setChoiceMode(ListView.CHOICE_MODE_MULTIPLE_MODAL);
309 ListView lv = mDownloadList.getCurrentView();
426 * Show the correct ListView and hide the other, or hide both and show the empty view.
436 ListView lv = activeListView();
446 ListView getCurrentView()
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/content/
ChangedContacts.java 37 import android.widget.ListView;
71 private ListView mList;
110 mList = new ListView(this);
  /development/samples/BluetoothChat/src/com/example/android/BluetoothChat/
BluetoothChat.java 39 import android.widget.ListView;
68 private ListView mConversationView;
141 mConversationView = (ListView) findViewById(R.id.in);
  /packages/apps/Calendar/src/com/android/calendar/alerts/
AlertActivity.java 38 import android.widget.ListView;
92 private ListView mListView;
217 mListView = (ListView) findViewById(R.id.alert_container);
  /packages/apps/DeskClock/src/com/android/deskclock/worldclock/
CitiesActivity.java 36 import android.widget.ListView;
63 private ListView mCitiesList;
222 mCitiesList = (ListView) findViewById(R.id.cities_list);
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
DialogDetailsView.java 29 import android.widget.ListView;
91 ListView detailsList = (ListView) LayoutInflater.from(mActivity.getAndroidContext()).inflate(
  /packages/apps/Mms/src/com/android/mms/ui/
ManageSimMessages.java 44 import android.widget.ListView;
70 private ListView mSimList;
93 mSimList = (ListView) findViewById(R.id.messages);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/userdictionary/
UserDictionarySettings.java 38 import android.widget.ListView;
147 final ListView listView = getListView();
148 listView.setAdapter(createAdapter());
149 listView.setFastScrollEnabled(true);
150 listView.setEmptyView(emptyView);
187 public void onListItemClick(ListView l, View v, int position, long id) {
  /cts/tests/tests/accessibilityservice/src/android/accessibilityservice/cts/
AccessibilityEndToEndTest.java 32 import android.widget.ListView;
61 expected.setClassName(ListView.class.getName());
71 final ListView listView = (ListView) getActivity().findViewById(R.id.listview);
82 listView.setSelection(1);
  /development/samples/Support7Demos/src/com/example/android/supportv7/media/
SampleMediaRouterActivity.java 44 import android.widget.ListView;
65 private ListView mMediaListView;
111 mMediaListView = (ListView)findViewById(R.id.media);
113 mMediaListView.setChoiceMode(ListView.CHOICE_MODE_SINGLE);
  /development/samples/UiAutomator/src/com/android/test/uiautomator/demos/
LogBuildNumber.java 62 new UiSelector().className(android.widget.ListView.class.getName());
  /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;
  /frameworks/base/tests/StatusBar/src/com/android/statusbartest/
ToastTest.java 23 import android.widget.ListView;
  /packages/apps/Email/src/com/android/email/activity/
MailboxListFragment.java 40 import android.widget.ListView;
266 private static int pointToIndex(ListView list, int x, int y) {
445 final ListView lv = getListView();
447 lv.setChoiceMode(ListView.CHOICE_MODE_SINGLE);
795 final ListView lv = getListView();
    [all...]
  /development/apps/Development/src/com/android/development/
InstrumentationList.java 36 import android.widget.ListView;
147 protected void onListItemClick(ListView l, View v, int position, long id)
PackageBrowser.java 36 import android.widget.ListView;
189 protected void onListItemClick(ListView l, View v, int position, long id) {
  /development/samples/ApiDemos/src/com/example/android/apis/
ApiDemos.java 25 import android.widget.ListView;
143 protected void onListItemClick(ListView l, View v, int position, long id) {

Completed in 3230 milliseconds

<<11121314151617