HomeSort by relevance Sort by last modified time
    Searched refs:listView (Results 101 - 125 of 145) sorted by null

1 2 3 45 6

  /frameworks/base/core/java/android/widget/
Spinner.java     [all...]
FastScroller.java 236 public FastScroller(AbsListView listView, int styleResId) {
237 mList = listView;
238 mOldItemCount = listView.getCount();
239 mOldChildCount = listView.getChildCount();
241 final Context context = listView.getContext();
243 mScrollBarStyle = listView.getScrollBarStyle();
260 mMinimumTouchTarget = listView.getResources().getDimensionPixelSize(
265 final ViewGroupOverlay overlay = listView.getOverlay();
275 setScrollbarPosition(listView.getVerticalScrollbarPosition());
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/list/
ContactBrowseListFragment.java 566 AutoScrollListView listView = (AutoScrollListView)getListView();
567 listView.requestPositionToScreen(
568 selectedPosition + listView.getHeaderViewsCount(), mSmoothScrollRequested);
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ui/
SearchActivityView.java 425 SuggestionsListView<?> listView = (SuggestionsListView<?>) v;
426 if (onSuggestionKeyDown(listView.getSuggestionsAdapter(),
427 listView.getSelectedItemId(), keyCode, event)) {
  /packages/apps/Settings/src/com/android/settings/notification/
NotificationStation.java 46 import android.widget.ListView;
144 ListView listView = getListView();
145 Utils.forceCustomPadding(listView, false /* non additive padding */);
148 listView.setAdapter(mAdapter);
  /packages/apps/MusicFX/src/com/android/musicfx/
ControlPanelPicker.java 38 import android.widget.ListView;
118 public void onPrepareListView(ListView listView) {
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/name/
DeviceNameSettingsActivity.java 77 public void onItemClick(AdapterView<?> listView, View itemView, int position, long id) {
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/suid/
SuidFilesActivity.java 37 import android.widget.ListView;
105 // to prevent the user from just seeing a blank listview.
119 protected void onListItemClick(ListView listView, View view, int position, long id) {
120 super.onListItemClick(listView, view, position, id);
151 /** {@link ListView} items display the basenames of the suid files. */
  /development/apps/Development/src/com/android/development/
PermissionDetails.java 49 import android.widget.ListView;
122 // by ListView is null.
148 ListView listView = (ListView)findViewById(android.R.id.list);
150 ListView lv= (ListView) findViewById(android.R.id.list);
154 listView.setAdapter(mAdapter);
  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapEmailSettingsAdapter.java 68 ExpandableListView listView,
78 listView.setOnGroupExpandListener(new OnGroupExpandListener() {
  /packages/apps/Settings/src/com/android/settings/
ZonePicker.java 32 import android.widget.ListView;
170 final ListView list = (ListView) view.findViewById(android.R.id.list);
298 public void onListItemClick(ListView listView, View v, int position, long id) {
301 final Map<?, ?> map = (Map<?, ?>)listView.getItemAtPosition(position);
  /packages/apps/Settings/src/com/android/settings/print/
PrintServiceSettingsFragment.java 57 import android.widget.ListView;
230 ListView listView = getListView();
231 ViewGroup contentRoot = (ViewGroup) listView.getParent();
232 View emptyView = listView.getEmptyView();
246 listView.setEmptyView(emptyView);
258 listView.setEmptyView(emptyView);
273 listView.setEmptyView(emptyView);
  /cts/tests/uiautomator/src/com/android/cts/uiautomatortest/
CtsUiAutomatorTest.java 97 UiScrollable listView = new UiScrollable(
98 new UiSelector().className(android.widget.ListView.class.getName()));
101 if (!listView.exists())
    [all...]
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/dialog/
SettingsLayoutFragment.java 419 View listView = (View) actionView.getTag(R.id.list);
430 animators.add(createSlideInFromEndAnimator(listView));
438 animators.add(createSlideOutToStartAnimator(listView));
447 animators.add(createSlideInFromStartAnimator(listView));
455 animators.add(createSlideOutToEndAnimator(listView));
560 throw new IllegalArgumentException("No ListView exists.");
    [all...]
DialogFragment.java 307 View listView = (View) actionView.getTag(R.id.list);
318 animators.add(createSlideInFromEndAnimator(listView));
326 animators.add(createSlideOutToStartAnimator(listView));
335 animators.add(createSlideInFromStartAnimator(listView));
343 animators.add(createSlideOutToEndAnimator(listView));
522 throw new IllegalStateException("No ListView exists.");
    [all...]
  /cts/tests/tests/accessibilityservice/src/android/accessibilityservice/cts/
AccessibilityEndToEndTest.java 32 import android.widget.ListView;
59 expected.setClassName(ListView.class.getName());
69 final ListView listView = (ListView) getActivity().findViewById(R.id.listview);
80 listView.setSelection(1);
  /cts/tests/tests/widget/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...]
  /packages/apps/InCallUI/src/com/android/incallui/
ConferenceParticipantListAdapter.java 28 import android.widget.ListView;
47 * Adapter for a ListView containing conference call participant information.
177 * The ListView containing the participant information.
179 private final ListView mListView;
182 * The conference participants to show in the ListView.
214 * @param listView The listview.
219 public ConferenceParticipantListAdapter(ListView listView, Context context,
222 mListView = listView;
    [all...]
  /packages/apps/Mms/src/com/android/mms/ui/
MessageListAdapter.java 39 import android.widget.ListView;
128 Context context, Cursor c, ListView listView,
144 listView.setRecyclerListener(new AbsListView.RecyclerListener() {
  /frameworks/opt/chips/src/com/android/ex/chips/
RecipientEditTextView.java 86 import android.widget.ListView;
    [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
SpinnerCompat.java 41 import android.widget.ListView;
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
AnimatedAdapter.java 253 SwipeableListView listView, final List<ConversationSpecialItemView> specialViews) {
260 R.layout.conversation_list_default_footer, listView, false);
262 mListView = listView;
    [all...]
FolderListFragment.java 40 import android.widget.ListView;
113 private ListView mListView;
470 mListView = (ListView) rootView.findViewById(android.R.id.list);
503 protected void addListHeader(LayoutInflater inflater, View rootView, ListView list) {
570 public void onListItemClick(ListView l, View v, int position, long id) {
602 // Get the ListView's adapter
    [all...]
  /cts/tests/tests/view/src/android/view/cts/
ViewTest.java 84 import android.widget.ListView;
    [all...]

Completed in 2954 milliseconds

1 2 3 45 6