HomeSort by relevance Sort by last modified time
    Searched defs:listView (Results 26 - 50 of 57) sorted by null

12 3

  /packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
CellBroadcastListActivity.java 45 import android.widget.ListView;
108 ListView listView = getListView();
109 listView.setOnCreateContextMenuListener(mOnCreateContextMenuListener);
134 public void onListItemClick(ListView l, View v, int position, long id) {
  /packages/apps/Mms/src/com/android/mms/ui/
SearchActivity.java 45 import android.widget.ListView;
272 final ListView listView = getListView();
273 listView.setItemsCanFocus(true);
274 listView.setFocusable(true);
275 listView.setClickable(true);
353 // ListView seems to want to reject the setFocusable until such time
356 listView.setFocusable(true);
357 listView.setFocusableInTouchMode(true);
358 listView.requestFocus()
    [all...]
ConversationList.java 66 import android.widget.ListView;
129 ListView listView = getListView();
130 listView.setOnCreateContextMenuListener(mConvListOnCreateContextMenuListener);
131 listView.setOnKeyListener(mThreadListKeyListener);
132 listView.setChoiceMode(ListView.CHOICE_MODE_MULTIPLE_MODAL);
133 listView.setMultiChoiceModeListener(new ModeCallback());
136 listView.setEmptyView(findViewById(R.id.empty));
180 ListView listView = getListView()
    [all...]
MessageListAdapter.java 39 import android.widget.ListView;
127 Context context, Cursor c, ListView listView,
143 listView.setRecyclerListener(new AbsListView.RecyclerListener() {
  /packages/apps/Settings/src/com/android/settings/
DreamSettings.java 46 import android.widget.ListView;
124 ListView listView = getListView();
126 listView.setItemsCanFocus(true);
130 listView.setEmptyView(emptyView);
133 listView.setAdapter(mAdapter);
NotificationStation.java 48 import android.widget.ListView;
136 ListView listView = getListView();
140 // listView.setEmptyView(emptyView);
143 listView.setAdapter(mAdapter);
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) {
  /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/Settings/src/com/android/settings/deviceinfo/
MiscFilesHandler.java 39 import android.widget.ListView;
68 ListView lv = getListView();
70 lv.setChoiceMode(ListView.CHOICE_MODE_MULTIPLE_MODAL);
75 private class ModeCallback implements ListView.MultiChoiceModeListener {
95 ListView lv = getListView();
166 ListView lv = getListView();
255 final ListView listView = (ListView) parent;
261 listView.setItemChecked(listPosition, isChecked)
    [all...]
  /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/src/android/widget/cts/util/
ListScenario.java 35 import android.widget.ListView;
47 private ListView mListView;
79 public ListView getListView() {
408 * Returns the LinearLayout containing the ListView in this scenario.
410 * @return The LinearLayout in which the ListView is held.
430 * @return The newly created ListView widget.
432 protected ListView createListView() {
433 return new ListView(this);
444 * Sets an adapter on a ListView.
446 * @param listView The ListView to set the adapter on
    [all...]
  /frameworks/base/core/tests/coretests/src/android/util/
ListScenario.java 29 import android.widget.ListView;
46 private ListView mListView;
78 public ListView getListView() {
409 * Returns the LinearLayout containing the ListView in this scenario.
411 * @return The LinearLayout in which the ListView is held.
431 * @return The newly created ListView widget.
433 protected ListView createListView() {
434 return new ListView(this);
445 * Sets an adapter on a ListView.
447 * @param listView The ListView to set the adapter on
    [all...]
  /frameworks/base/core/java/com/android/internal/app/
AlertController.java 52 import android.widget.ListView;
69 private ListView mListView;
366 public ListView getListView() {
645 * a ListView. If it's text we should use the dark background
646 * for ListView we should use the light background. If neither
700 /* Yet another *special* case. If there is a ListView with buttons
702 * footer of the ListView this will allow more items to be
728 public static class RecycleListView extends ListView {
792 * Interface definition for a callback to be invoked before the ListView
798 * Called before the ListView is bound to an adapter
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/list/
ContactBrowseListFragment.java 563 AutoScrollListView listView = (AutoScrollListView)getListView();
564 listView.requestPositionToScreen(
565 selectedPosition + listView.getHeaderViewsCount(), mSmoothScrollRequested);
  /packages/apps/Dialer/src/com/android/dialer/calllog/
CallLogFragment.java 45 import android.widget.ListView;
143 final ListView listView = getListView();
150 if (listView.getFirstVisiblePosition() > 5) {
151 listView.setSelection(5);
161 listView.smoothScrollToPosition(0);
  /packages/apps/Music/src/com/android/music/
MusicPicker.java 42 import android.widget.ListView;
162 final ListView mListView;
188 TrackListAdapter(Context context, ListView listView, int layout,
191 mListView = listView;
439 final ListView listView = getListView();
441 listView.setItemsCanFocus(false);
443 mAdapter = new TrackListAdapter(this, listView,
449 listView.setTextFilterEnabled(true)
    [all...]
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ui/
SearchActivityView.java 522 SuggestionsListView<?> listView = (SuggestionsListView<?>) v;
523 if (onSuggestionKeyDown(listView.getSuggestionsAdapter(),
524 listView.getSelectedItemId(), keyCode, event)) {
  /frameworks/ex/chips/src/com/android/ex/chips/
RecipientEditTextView.java 92 import android.widget.ListView;
    [all...]
  /cts/tests/uiautomator/src/com/android/cts/uiautomatortest/
CtsUiAutomatorTest.java 94 UiScrollable listView = new UiScrollable(
95 new UiSelector().className(android.widget.ListView.class.getName()));
98 if (!listView.exists())
    [all...]
  /frameworks/base/core/java/android/widget/
Spinner.java 934 final ListView listView = mPopup.getListView();
935 listView.setTextDirection(textDirection);
936 listView.setTextAlignment(textAlignment);
    [all...]
Editor.java     [all...]
  /cts/tests/tests/view/src/android/view/cts/
ViewTest.java 76 import android.widget.ListView;
    [all...]
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/14/
android.jar 
  /prebuilts/sdk/15/
android.jar 

Completed in 3452 milliseconds

12 3