Home
last modified time | relevance | path

Searched refs:getListView (Results 1 – 25 of 112) sorted by relevance

12345

/frameworks/base/core/tests/coretests/src/android/widget/listview/
DListEmptyViewTest.java43 mListView = getActivity().getListView(); in setUp()
61 assertTrue("List not shown", mActivity.getListView().getVisibility() == View.VISIBLE); in testZeroToOne()
71 assertTrue("List not shown", mActivity.getListView().getVisibility() == View.VISIBLE); in testZeroToOneForwardBack()
82 assertTrue("List not shown", mActivity.getListView().getVisibility() == View.VISIBLE); in testZeroToOneForwardBack()
97 assertTrue("List not shown", mActivity.getListView().getVisibility() == View.VISIBLE); in testZeroToManyToZero()
107 mActivity.getListView().getVisibility() == View.VISIBLE); in testZeroToManyToZero()
112 mActivity.getListView().getVisibility() == View.GONE); in testZeroToManyToZero()
125 assertTrue("List still shown", mActivity.getListView().getVisibility() == View.GONE); in testZeroToManyToZero()
DListSimple.java38 getListView().setVerticalScrollBarEnabled(true); in onCreate()
39 getListView().setFadingEdgeLength(12); in onCreate()
40 getListView().setVerticalFadingEdgeEnabled(true); in onCreate()
DListButtonsDiagonalAcrossItems.java38 return (Button) ((ViewGroup) getListView().getChildAt(0)).getChildAt(0); in getLeftButton()
42 return (Button) ((ViewGroup) getListView().getChildAt(1)).getChildAt(1); in getCenterButton()
46 return (Button) ((ViewGroup) getListView().getChildAt(2)).getChildAt(2); in getRightButton()
DListHorizontalFocusWithinItemWins.java39 return (Button) ((ViewGroup) getListView().getChildAt(0)).getChildAt(0); in getTopLeftButton()
43 return (Button) ((ViewGroup) getListView().getChildAt(0)).getChildAt(2); in getTopRightButton()
47 return (Button) ((ViewGroup) getListView().getChildAt(1)).getChildAt(1); in getBottomMiddleButton()
DListWithOnItemSelectedAction.java36 if (positon != getListView().getSelectedItemPosition()) { in positionSelected()
41 ((TextView) getListView().getSelectedView()).getText().toString()); in positionSelected()
DListSetSelection.java49 getListView().setSelection(0); in onCreate()
66 getListView().setSelection(0); in dispatchKeyEvent()
DListBottomGravityTest.java37 mListView = getActivity().getListView(); in setUp()
DListBottomGravityManyTest.java37 mListView = getActivity().getListView(); in setUp()
DListItemFocusablesClose.java37 return ((ViewGroup) getListView().getChildAt(listIndex)).getChildAt(index); in getChildOfItem()
/frameworks/base/packages/SystemUI/src/com/android/systemui/globalactions/
DGlobalActionsGridLayout.java40 ListGridLayout listView = getListView(); in setupListView()
77 protected ListGridLayout getListView() { in getListView() method in GlobalActionsGridLayout
78 return (ListGridLayout) super.getListView(); in getListView()
83 ListGridLayout list = getListView(); in removeAllListViews()
91 ListGridLayout list = getListView(); in addToListView()
100 ListGridLayout list = getListView(); in removeAllItems()
149 int rows = getListView().getRowCount(); in getAnimationDistance()
DGlobalActionsLayout.java45 ViewGroup listView = getListView(); in setBackgrounds()
76 if (getListView() != null && !mBackgroundsSet) { in onMeasure()
84 getListView().addView(v, 0); in addToListView()
86 getListView().addView(v); in addToListView()
126 ViewGroup listView = getListView(); in onUpdateList()
151 protected ViewGroup getListView() { in getListView() method in GlobalActionsLayout
DGlobalActionsLayoutLite.java57 int nChildren = getListView().getChildCount() - 1; // don't count flow element in onUpdateList()
88 ViewGroup listView = getListView(); in onLayout()
DGlobalActionsFlatLayout.java67 getListView().removeView(overflowButton); in addToListView()
86 ViewGroup listView = getListView(); in onLayout()
DGlobalActionsPopupMenu.java79 getListView().setOnItemLongClickListener(mOnItemLongClickListener); in show()
82 ListView listView = getListView(); in show()
/frameworks/base/packages/SystemUI/src/com/android/systemui/
DMultiListLayout.java45 protected abstract ViewGroup getListView(); in getListView() method in MultiListLayout
56 getListView().setAccessibilityDelegate(delegate); in setListViewAccessibilityDelegate()
119 ViewGroup list = getListView(); in removeAllListViews()
/frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/
DGlifListLayout.java71 new ListViewScrollHandlingDelegate(requireScrollMixin, getListView())); in init()
96 public ListView getListView() { in getListView() method in GlifListLayout
97 return listMixin.getListView(); in getListView()
DSetupWizardListLayout.java67 new ListViewScrollHandlingDelegate(requireScrollMixin, getListView())); in init()
92 public ListView getListView() { in getListView() method in SetupWizardListLayout
93 return listMixin.getListView(); in getListView()
/frameworks/base/core/java/com/android/internal/view/menu/
DCascadingMenuPopup.java317 ListView lastListView = mShowingMenus.get(mShowingMenus.size() - 1).getListView(); in getNextMenuPosition()
440 final ListView listView = popupWindow.getListView(); in showMenu()
498 final ListView listView = parentInfo.getListView(); in findParentViewForSubmenu()
569 toMenuAdapter(info.getListView().getAdapter()).notifyDataSetChanged(); in updateMenuView()
584 info.getListView().requestFocus(); in onSubMenuSelected()
716 public ListView getListView() { in getListView() method in CascadingMenuPopup
717 … return mShowingMenus.isEmpty() ? null : mShowingMenus.get(mShowingMenus.size() - 1).getListView(); in getListView()
749 public ListView getListView() { in getListView() method in CascadingMenuPopup.CascadingMenuInfo
750 return window.getListView(); in getListView()
DShowableListMenu.java34 public ListView getListView(); in getListView() method
/frameworks/base/core/java/com/android/internal/app/
DLocalePickerWithRegion.java216 getListView().setNestedScrollingEnabled(true); in onViewCreated()
217 getListView().setDivider(null); in onViewCreated()
240 getListView().requestFocus(); in onResume()
257 final ListView list = getListView(); in onPause()
335 getListView().setSelectionFromTop(mFirstVisiblePosition, mTopDistance); in onCreateOptionsMenu()
/frameworks/base/core/java/com/android/internal/globalactions/
DActionsDialog.java55 public ListView getListView() { in getListView() method in ActionsDialog
56 return mAlert.getListView(); in getListView()
/frameworks/base/core/tests/coretests/src/android/widget/focus/
DListOfInternalSelectionViews.java48 public ListView getListView() { in getListView() method in ListOfInternalSelectionViews
85 return (InternalSelectionView) getListView().getSelectedView(); in getSelectedView()
/frameworks/base/tests/UiBench/src/com/android/test/uibench/listview/
DFadingEdgeListFragment.java26 ListView listView = getListView(); in onActivityCreated()
/frameworks/base/core/tests/coretests/src/android/widget/listview/arrowscroll/
DListItemFocusableAboveUnfocusableTest.java36 mListView = getActivity().getListView(); in setUp()
/frameworks/base/tests/UiBench/src/com/android/test/uibench/
DShadowGridActivity.java32 getListView().setDivider(null); in onViewCreated()

12345