/frameworks/base/core/java/com/android/internal/app/ |
LocalePicker.java | 36 import android.widget.ListView; 233 public void onListItemClick(ListView l, View v, int position, long id) {
|
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/ |
HwTests.java | 25 import android.widget.ListView; 147 protected void onListItemClick(ListView l, View v, int position, long id) {
|
/frameworks/base/tests/MusicBrowserDemo/src/com/example/android/musicbrowserdemo/ |
BrowserListFragment.java | 36 import android.widget.ListView; 101 public void onListItemClick(ListView l, View v, int position, long id) {
|
/frameworks/base/tests/VectorDrawableTest/src/com/android/test/dynamic/ |
VectorDrawableTest.java | 24 import android.widget.ListView; 146 protected void onListItemClick(ListView l, View v, int position, long id) {
|
/frameworks/base/tests/backup/src/com/android/backuptest/ |
BackupTestActivity.java | 33 import android.widget.ListView; 197 public void onListItemClick(ListView l, View v, int position, long id)
|
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/ |
ListViewCompat.java | 29 import android.widget.ListView; 34 * This class contains a number of useful things for ListView. Mainly used by 39 public class ListViewCompat extends ListView { 224 * with this ListView's padding and divider heights included. If maxHeight is provided, the 246 * @return The height of this ListView with the given children.
|
/packages/apps/Browser/src/com/android/browser/ |
ErrorConsoleView.java | 32 import android.widget.ListView; 207 * This class extends ListView to implement the View that will actually display the set of 210 private static class ErrorConsoleListView extends ListView {
|
BrowserHistoryPage.java | 60 import android.widget.ListView; 80 ListView mGroupList, mChildList; 167 && mGroupList.getCheckedItemPosition() == ListView.INVALID_POSITION) { 234 mGroupList = (ListView) mRoot.findViewById(android.R.id.list); 244 mChildList = new ListView(getActivity());
|
/packages/apps/Contacts/src/com/android/contacts/group/ |
GroupBrowseListFragment.java | 42 import android.widget.ListView; 161 mListView.setScrollBarStyle(ListView.SCROLLBARS_OUTSIDE_OVERLAY);
|
/packages/apps/Contacts/src/com/android/contacts/list/ |
DefaultContactBrowseListFragment.java | 32 import android.widget.ListView; 77 // inside the ListView prevents us from using MODE_FULLY_EXPANDED and messes up ripples. 234 * a profile, this methods creates 2 views that are inserted as headers to the listview: 239 ListView list = getListView(); 241 // change the visibility of a view in a ListView without having a parent view.
|
/packages/apps/Settings/src/com/android/settings/quicklaunch/ |
BookmarkPicker.java | 33 import android.widget.ListView; 240 protected void onListItemClick(ListView l, View v, int position, long id) {
|
/packages/apps/Tag/canon/src/com/android/apps/tagcanon/ |
TagCanon.java | 35 import android.widget.ListView; 149 public void onListItemClick(ListView l, View v, int position, long id) {
|
/packages/experimental/BugReportSender/src/com/android/bugreportsender/ |
BugReportListActivity.java | 32 import android.widget.ListView; 106 protected void onListItemClick(ListView l, View v, int position, long id) {
|
/pdk/apps/HelloPDK/src/com/example/android/helloPDK/ |
MainActivity.java | 28 import android.widget.ListView; 146 protected void onListItemClick(ListView l, View v, int position, long id) {
|
/packages/apps/ContactsCommon/src/com/android/contacts/common/list/ |
ContactEntryListFragment.java | 45 import android.widget.ListView; 115 private ListView mListView; 224 public ListView getListView() { 525 mListView.setScrollBarStyle(ListView.SCROLLBARS_OUTSIDE_OVERLAY); 716 mListView = (ListView)mView.findViewById(android.R.id.list); 719 "Your content must have a ListView whose id attribute is " + 737 // We manually save/restore the listview state
|
/packages/apps/Dialer/src/com/android/dialer/calllog/ |
CallLogFragment.java | 43 import android.widget.ListView; 240 final ListView listView = getListView(); 247 if (listView.getFirstVisiblePosition() > 5) { 248 listView.setSelection(5); 258 listView.smoothScrollToPosition(0); 524 * Determine whether or not the footer view should be added to the listview. If getView() 544 final ListView listView = getListView(); 545 listView.removeFooterView(mFooterView) [all...] |
/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/Settings/src/com/android/settings/applications/ |
RunningProcessesView.java | 42 import android.widget.ListView; 74 ListView mListView; 401 ListView l = (ListView)parent; 440 mListView = (ListView)findViewById(android.R.id.list);
|
/packages/apps/Settings/src/com/android/settings/dashboard/ |
SearchResultsSummary.java | 37 import android.widget.ListView; 58 private ListView mResultsListView; 62 private ListView mSuggestionsListView; 164 mResultsListView = (ListView) view.findViewById(R.id.list_results); 219 mSuggestionsListView = (ListView) view.findViewById(R.id.list_suggestions);
|
/developers/build/prebuilts/gradle/MediaRouter/Application/src/main/java/com/example/android/mediarouter/player/ |
MainActivity.java | 55 import android.widget.ListView; 87 private ListView mLibraryView; 88 private ListView mPlayListView; 290 mLibraryView = (ListView) findViewById(R.id.media); 292 mLibraryView.setChoiceMode(ListView.CHOICE_MODE_SINGLE); 300 mPlayListView = (ListView) findViewById(R.id.playlist); 302 mPlayListView.setChoiceMode(ListView.CHOICE_MODE_SINGLE);
|
/developers/samples/android/media/MediaRouter/Application/src/main/java/com/example/android/mediarouter/player/ |
MainActivity.java | 55 import android.widget.ListView; 87 private ListView mLibraryView; 88 private ListView mPlayListView; 290 mLibraryView = (ListView) findViewById(R.id.media); 292 mLibraryView.setChoiceMode(ListView.CHOICE_MODE_SINGLE); 300 mPlayListView = (ListView) findViewById(R.id.playlist); 302 mPlayListView.setChoiceMode(ListView.CHOICE_MODE_SINGLE);
|
/development/samples/Support7Demos/src/com/example/android/supportv7/media/ |
SampleMediaRouterActivity.java | 62 import android.widget.ListView; 89 private ListView mLibraryView; 90 private ListView mPlayListView; 293 mLibraryView = (ListView) findViewById(R.id.media); 295 mLibraryView.setChoiceMode(ListView.CHOICE_MODE_SINGLE); 303 mPlayListView = (ListView) findViewById(R.id.playlist); 305 mPlayListView.setChoiceMode(ListView.CHOICE_MODE_SINGLE);
|
/development/samples/browseable/MediaRouter/src/com.example.android.mediarouter/player/ |
MainActivity.java | 55 import android.widget.ListView; 87 private ListView mLibraryView; 88 private ListView mPlayListView; 290 mLibraryView = (ListView) findViewById(R.id.media); 292 mLibraryView.setChoiceMode(ListView.CHOICE_MODE_SINGLE); 300 mPlayListView = (ListView) findViewById(R.id.playlist); 302 mPlayListView.setChoiceMode(ListView.CHOICE_MODE_SINGLE);
|
/frameworks/support/v7/appcompat/src/android/support/v7/widget/ |
ListPopupWindow.java | 50 import android.widget.ListView; 525 * @see ListView#setOnItemClickListener(android.widget.AdapterView.OnItemClickListener) 536 * @see ListView#setOnItemSelectedListener(android.widget.AdapterView.OnItemSelectedListener) 643 mDropDownList.setSelection(ListView.INVALID_POSITION); 722 if (list.getChoiceMode() != ListView.CHOICE_MODE_NONE) { 789 * @return The position of the currently selected item or {@link ListView#INVALID_POSITION} 792 * @see ListView#getSelectedItemPosition() 796 return ListView.INVALID_POSITION; 802 * @return The ID of the currently selected item or {@link ListView#INVALID_ROW_ID} 805 * @see ListView#getSelectedItemId( [all...] |
/cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/analyzer/ |
CameraAnalyzerActivity.java | 45 import android.widget.ListView; 72 private ListView mTestList; 107 mTestList = (ListView) findViewById(R.id.ca_tests);
|