HomeSort by relevance Sort by last modified time
    Searched full:listview (Results 801 - 825 of 1393) sorted by null

<<31323334353637383940>>

  /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/v17/leanback/src/android/support/v17/leanback/app/
PlaybackOverlayFragment.java 557 void setVerticalGridViewLayout(VerticalGridView listview) {
558 if (listview == null) {
563 setBottomPadding(listview, mPaddingBottom);
566 listview.setItemAlignmentOffset(mAlignPosition);
567 listview.setItemAlignmentOffsetPercent(100);
570 listview.setWindowAlignmentOffset(0);
571 listview.setWindowAlignmentOffsetPercent(100);
572 listview.setWindowAlignment(VerticalGridView.WINDOW_ALIGN_HIGH_EDGE);
PlaybackOverlaySupportFragment.java 559 void setVerticalGridViewLayout(VerticalGridView listview) {
560 if (listview == null) {
565 setBottomPadding(listview, mPaddingBottom);
568 listview.setItemAlignmentOffset(mAlignPosition);
569 listview.setItemAlignmentOffsetPercent(100);
572 listview.setWindowAlignmentOffset(0);
573 listview.setWindowAlignmentOffsetPercent(100);
574 listview.setWindowAlignment(VerticalGridView.WINDOW_ALIGN_HIGH_EDGE);
  /frameworks/support/v7/appcompat/src/android/support/v7/internal/view/menu/
ListMenuPresenter.java 114 * Call this instead of getMenuView if you want to manage your own ListView.
115 * For proper operation, the ListView hosting this adapter should add
  /packages/apps/Calendar/src/com/android/calendar/month/
MonthListView.java 27 import android.widget.ListView;
31 public class MonthListView extends ListView {
  /packages/apps/Settings/src/com/android/settings/
AppPicker.java 41 import android.widget.ListView;
69 protected void onListItemClick(ListView l, View v, int position, long id) {
  /packages/apps/Stk/src/com/android/stk/
StkLauncherActivity.java 27 import android.widget.ListView;
80 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) {
  /packages/services/Telephony/src/com/android/phone/settings/fdn/
FdnList.java 27 import android.widget.ListView;
128 public 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) {
  /development/samples/ApiDemos/src/com/example/android/apis/security/
KeyStoreUsage.java 40 import android.widget.ListView;
75 * Used by the {@code ListView} in our layout to list the keys available in
126 * Set up our {@code ListView} with an adapter that allows
129 ListView lv = (ListView) findViewById(R.id.entries_list);
  /frameworks/base/core/java/android/accounts/
ChooseTypeAndAccountActivity.java 36 import android.widget.ListView;
558 * Populates the UI ListView with the given list of items and selects an item
562 ListView list = (ListView) findViewById(android.R.id.list);
565 list.setChoiceMode(ListView.CHOICE_MODE_SINGLE);
  /frameworks/opt/datetimepicker/src/com/android/datetimepicker/date/
DayPickerView.java 32 import android.widget.ListView;
45 public abstract class DayPickerView extends ListView implements OnScrollListener,
87 // used for tracking what state listview is in
89 // used for tracking what state listview is in
387 // Clear focus to avoid ListView bug in Jelly Bean MR1.
  /packages/apps/Browser/src/com/android/browser/
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/KeyChain/src/com/android/keychain/
KeyChainActivity.java 40 import android.widget.ListView;
161 final ListView lv = (ListView) View.inflate(this, R.layout.cert_chooser, null);
314 ListView lv = (ListView)parent;
  /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);
  /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...]
ListPopupWindow.java 522 * @see ListView#setOnItemClickListener(android.widget.AdapterView.OnItemClickListener)
533 * @see ListView#setOnItemSelectedListener(android.widget.AdapterView.OnItemSelectedListener)
641 mDropDownList.setSelection(ListView.INVALID_POSITION);
718 if (list.getChoiceMode() != ListView.CHOICE_MODE_NONE) {
784 * @return The position of the currently selected item or {@link ListView#INVALID_POSITION}
787 * @see ListView#getSelectedItemPosition()
791 return ListView.INVALID_POSITION;
797 * @return The ID of the currently selected item or {@link ListView#INVALID_ROW_ID}
800 * @see ListView#getSelectedItemId()
804 return ListView.INVALID_ROW_ID
    [all...]
  /frameworks/base/docs/html/training/notepad/
notepad-ex1.jd 14 <li><em>How to bind data from a database cursor into a ListView using a
190 &lt;ListView android:id=&quot;@android:id/list&quot;
202 The <strong>&#64;</strong> symbol in the id strings of the <code>ListView</code> and
207 The <code>ListView</code> and <code>TextView</code> can be
209 ListView will be used when there are notes to be shown, while the TextView
217 automatically when the {@link android.widget.ListAdapter} has no data for the ListView. The
220 on the ListView.
249 <p>To make the list of notes in the ListView, we also need to define a View for each row:</p>
353 populate the ListView using the helper &mdash; we haven't defined this method yet. </li>
488 into a ListView, and this is a common way to use a {@link android.widget.ListAdapter
    [all...]

Completed in 2655 milliseconds

<<31323334353637383940>>