Searched refs:getView (Results 1 - 25 of 213) sorted by relevance

123456789

/frameworks/base/tests/UiBench/src/com/android/test/uibench/
H A DInflatingListActivity.java31 public View getView(int position, View convertView, ViewGroup parent) {
32 // pathological getView behavior: drop convertView on the floor to force inflation
33 return super.getView(position, null, parent);
/frameworks/base/core/java/android/widget/
H A DAdapter.java99 View getView(int position, View convertView, ViewGroup parent); method in interface:Adapter
105 * {@link #getView(int, View, ViewGroup)}.
113 * Get the type of View that will be created by {@link #getView} for the specified item.
118 * can be converted to the other in {@link #getView}. Note: Integers must be in the
128 * {@link #getView}. Each type represents a set of views that can be
129 * converted in {@link #getView}. If the adapter always returns the same
H A DBaseAdapter.java71 return getView(position, convertView, parent);
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DViewLayersActivity3.java54 public View getView(int position, View convertView, ViewGroup parent) { method in class:ViewLayersActivity3.SimpleListAdapter
55 TextView v = (TextView) super.getView(position, convertView, parent);
H A DListActivity.java112 public View getView(int position, View convertView, ViewGroup parent) { method in class:ListActivity.SimpleListAdapter
113 TextView v = (TextView) super.getView(position, convertView, parent);
H A DTransparentListActivity.java110 public View getView(int position, View convertView, ViewGroup parent) { method in class:TransparentListActivity.SimpleListAdapter
111 TextView v = (TextView) super.getView(position, convertView, parent);
H A DViewLayersActivity2.java57 public View getView(int position, View convertView, ViewGroup parent) { method in class:ViewLayersActivity2.SimpleListAdapter
58 TextView v = (TextView) super.getView(position, convertView, parent);
H A DViewLayersActivity4.java61 public View getView(int position, View convertView, ViewGroup parent) { method in class:ViewLayersActivity4.SimpleListAdapter
62 TextView v = (TextView) super.getView(position, convertView, parent);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DNavigationBarGestureHelper.java200 && mDivider.getView().getWindowManagerProxy().getDockSide() == DOCKED_INVALID) {
206 mDivider.getView().calculateBoundsForPosition(mIsVertical
209 mDivider.getView().isHorizontalDivision()
222 mDivider.getView().startDragging(false /* animate */, true /* touching*/);
231 SnapTarget snapTarget = mDivider.getView().getSnapAlgorithm()
233 mDivider.getView().resizeStack(position, snapTarget.position, snapTarget);
246 mDivider.getView().stopDragging(mIsVertical
262 if (mIsVertical && !mDivider.getView().isHorizontalDivision()) {
265 if (!mIsVertical && mDivider.getView().isHorizontalDivision()) {
/frameworks/support/v17/leanback/src/android/support/v17/leanback/app/
H A DBaseFragment.java189 return getView() != null;
199 return getView() != null;
219 final View view = getView();
H A DBaseSupportFragment.java191 return getView() != null;
201 return getView() != null;
221 final View view = getView();
H A DBrowseFragment.java753 if (getView() == null) {
959 mHeadersFragment.getVerticalGridView() : mMainFragment.getView();
973 } else if (mMainFragment != null && mMainFragment.getView() != null) {
974 return mMainFragment.getView();
1000 if (mHeadersFragment != null && mHeadersFragment.getView() != null &&
1001 mHeadersFragment.getView().requestFocus(direction, previouslyFocusedRect)) {
1005 if (mMainFragment != null && mMainFragment.getView() != null &&
1006 mMainFragment.getView().requestFocus(direction, previouslyFocusedRect)) {
1204 return mMainFragment != null && mMainFragment.getView() != null;
1209 return mMainFragment != null && mMainFragment.getView() !
[all...]
H A DBrowseSupportFragment.java755 if (getView() == null) {
961 mHeadersSupportFragment.getVerticalGridView() : mMainFragment.getView();
975 } else if (mMainFragment != null && mMainFragment.getView() != null) {
976 return mMainFragment.getView();
1002 if (mHeadersSupportFragment != null && mHeadersSupportFragment.getView() != null &&
1003 mHeadersSupportFragment.getView().requestFocus(direction, previouslyFocusedRect)) {
1007 if (mMainFragment != null && mMainFragment.getView() != null &&
1008 mMainFragment.getView().requestFocus(direction, previouslyFocusedRect)) {
1206 return mMainFragment != null && mMainFragment.getView() != null;
1211 return mMainFragment != null && mMainFragment.getView() !
[all...]
/frameworks/support/fragment/tests/java/android/support/v4/app/
H A DStrictViewFragment.java52 if (getView() == null) {
53 throw new IllegalStateException("getView returned null in onDestroyView");
/frameworks/support/design/tests/src/android/support/design/widget/
H A DSnackbarTestWithFAB.java61 assertEquals(originalFabPosition[1] - snackbar.getView().getHeight(), fabPosition[1]);
87 assertEquals(originalFabPosition[1] - snackbar.getView().getHeight(), fabPosition[1]);
/frameworks/base/core/java/com/android/internal/widget/
H A DWatchHeaderListView.java189 public View getView(int position, View convertView, ViewGroup parent) { method in class:WatchHeaderListView.WatchHeaderListAdapter
194 return super.getView(position - 1, convertView, parent);
198 return super.getView(position, convertView, parent);
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
H A DSectionedListAdapter.java89 public View getView(int position, View convertView, ViewGroup parent) { method in class:SectionedListAdapter
99 return section.getView(position - 1, convertView, parent);
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/binding/
H A DFakeAdapter.java110 public View getView(int position, View convertView, ViewGroup parent) { method in class:FakeAdapter
114 Pair<View, Boolean> pair = AdapterHelper.getView(item, null, parent, mCallback,
/frameworks/support/fragment/java/android/support/v4/app/
H A DFragmentPagerAdapter.java120 + " v=" + ((Fragment)object).getView());
150 return ((Fragment)object).getView() == view;
/frameworks/support/v13/java/android/support/v13/app/
H A DFragmentPagerAdapter.java124 + " v=" + ((Fragment)object).getView());
155 return ((Fragment)object).getView() == view;
/frameworks/base/core/tests/coretests/src/android/widget/focus/
H A DListOfButtons.java63 public View getView(int position, View convertView, ViewGroup parent) { method in class:ListOfButtons.MyAdapter
/frameworks/base/core/tests/coretests/src/android/widget/gridview/
H A DGridDelete.java103 public View getView(int position, View convertView, ViewGroup parent) { method in class:GridDelete.DeleteAdapter
/frameworks/base/core/tests/coretests/src/android/widget/listview/
H A DListTakeFocusFromSide.java63 public View getView(int position, View convertView, ViewGroup parent) { method in class:ListTakeFocusFromSide.ThrashListAdapter
/frameworks/base/packages/EasterEgg/src/com/android/egg/neko/
H A DNekoActivationActivity.java28 toast.getView().setBackgroundDrawable(null);
/frameworks/base/tests/BiDiTests/src/com/android/bidi/
H A DBiDiTestGalleryImages.java62 public View getView(int position, View convertView, ViewGroup parent) { method in class:BiDiTestGalleryImages

Completed in 3768 milliseconds

123456789