Home
last modified time | relevance | path

Searched refs:desiredHeight (Results 1 – 25 of 29) sorted by relevance

12

/frameworks/base/core/tests/coretests/src/android/util/
DListItemFactory.java42 … public static View twoButtonsSeparatedByFiller(int position, Context context, int desiredHeight) { in twoButtonsSeparatedByFiller() argument
43 if (desiredHeight < 90) { in twoButtonsSeparatedByFiller()
65 desiredHeight - 100)); in twoButtonsSeparatedByFiller()
91 public static View horizontalButtonSlots(Context context, int desiredHeight, Slot... slots) { in horizontalButtonSlots() argument
97 = new LinearLayout.LayoutParams(0, desiredHeight); in horizontalButtonSlots()
155 public static View button(int position, Context context, String text, int desiredHeight) { in button() argument
157 result.setHeight(desiredHeight); in button()
195 public static View text(int position, Context context, String text, int desiredHeight) { in text() argument
197 result.setHeight(desiredHeight); in text()
236 public static View doubleText(int position, Context context, String text, int desiredHeight) { in doubleText() argument
[all …]
DInternalSelectionView.java96 public void setDesiredHeight(int desiredHeight) { in setDesiredHeight() argument
97 mDesiredHeight = desiredHeight; in setDesiredHeight()
130 int desiredHeight = mDesiredHeight != null ? in measureHeight() local
137 return desiredHeight < specSize ? desiredHeight : specSize; in measureHeight()
139 return desiredHeight; in measureHeight()
DGridScenario.java328 protected View createView(int position, ViewGroup parent, int desiredHeight) { in createView() argument
330 result.setHeight(desiredHeight); in createView()
363 int desiredHeight = getDesiredItemHeight(); in getView() local
365desiredHeight = (int) (mScreenHeight * mOverrideItemScreenSizeFactors.get(position)); in getView()
367 return createView(position, parent, desiredHeight); in getView()
DListScenario.java501 int desiredHeight = (int) (mScreenHeight * mItemScreenSizeFactor); in getHeightForPosition() local
503 desiredHeight = (int) (mScreenHeight * mOverrideItemScreenSizeFactors.get(position)); in getHeightForPosition()
505 return desiredHeight; in getHeightForPosition()
540 protected View createView(int position, ViewGroup parent, int desiredHeight) { in createView() argument
542 desiredHeight); in createView()
645 int desiredHeight = getHeightForPosition(position); in getView() local
646 result = createView(position, parent, desiredHeight); in getView()
/frameworks/base/core/tests/coretests/src/android/widget/listview/
DListItemsExpandOnSelection.java41 protected View createView(int position, ViewGroup parent, int desiredHeight) { in createView() argument
42 TextView result = new ExpandWhenSelectedView(parent.getContext(), desiredHeight); in createView()
43 result.setHeight(desiredHeight); in createView()
65 public ExpandWhenSelectedView(Context context, int desiredHeight) { in ExpandWhenSelectedView() argument
67 mDesiredHeight = desiredHeight; in ExpandWhenSelectedView()
DListHeterogeneous.java40 protected View createView(int position, ViewGroup parent, int desiredHeight) { in createView() argument
44 position, parent.getContext(), getValueAtPosition(position), desiredHeight); in createView()
47 position, parent.getContext(), getValueAtPosition(position), desiredHeight); in createView()
50 position, parent.getContext(), getValueAtPosition(position), desiredHeight); in createView()
DListItemFocusableAboveUnfocusable.java40 protected View createView(int position, ViewGroup parent, int desiredHeight) { in createView() argument
43 position, parent.getContext(), getValueAtPosition(position), desiredHeight); in createView()
45 return super.createView(position, parent, desiredHeight); in createView()
DListInterleaveFocusables.java43 protected View createView(int position, ViewGroup parent, int desiredHeight) { in createView() argument
46 position, parent.getContext(), getValueAtPosition(position), desiredHeight); in createView()
48 return super.createView(position, parent, desiredHeight); in createView()
DListHorizontalFocusWithinItemWins.java52 int desiredHeight) { in createView() argument
56 context, desiredHeight, Slot.Left, Slot.Right); in createView()
59 context, desiredHeight, Slot.Middle); in createView()
DListItemFocusablesFarApart.java40 protected View createView(int position, ViewGroup parent, int desiredHeight) { in createView() argument
42 position, parent.getContext(), desiredHeight); in createView()
DAdjacentListsWithAdjacentISVsInside.java69 final int desiredHeight = (int) (0.8 * getWindowManager().getDefaultDisplay().getHeight()); in onCreate() local
72 mLeftListView.setAdapter(new AdjacentISVAdapter(desiredHeight)); in onCreate()
77 mRightListView.setAdapter(new AdjacentISVAdapter(desiredHeight)); in onCreate()
DListItemFocusablesClose.java50 protected View createView(int position, ViewGroup parent, int desiredHeight) { in createView() argument
52 position, parent.getContext(), desiredHeight); in createView()
DListSimple.java45 protected View createView(int position, ViewGroup parent, int desiredHeight) { in createView() argument
46 View view = super.createView(position, parent, desiredHeight); in createView()
DListButtonsDiagonalAcrossItems.java51 int desiredHeight) { in createView() argument
55 parent.getContext(), desiredHeight, slot); in createView()
DListItemISVAndButton.java42 protected View createView(int position, ViewGroup parent, int desiredHeight) { in createView() argument
51 desiredHeight - 240)); in createView()
DListOfTouchables.java41 protected View createView(int position, ViewGroup parent, int desiredHeight) { in createView() argument
/frameworks/base/core/tests/coretests/src/android/widget/gridview/
DGridSimple.java49 protected View createView(int position, ViewGroup parent, int desiredHeight) { in createView() argument
50 View view = super.createView(position, parent, desiredHeight); in createView()
DGridDelete.java104 int desiredHeight = getDesiredItemHeight(); in getView() local
105 return createView(mData.get(position), parent, desiredHeight); in getView()
/frameworks/base/tests/WallpaperTest/src/com/example/wallpapertest/
DTestWallpaper.java176 public void onDesiredSizeChanged(int desiredWidth, int desiredHeight) { in onDesiredSizeChanged() argument
177 super.onDesiredSizeChanged(desiredWidth, desiredHeight); in onDesiredSizeChanged()
179 mDesiredHeight = desiredHeight; in onDesiredSizeChanged()
/frameworks/base/libs/input/
DSpriteController.cpp158 int32_t desiredHeight = update.state.icon.bitmap.height(); in doUpdateSprites() local
160 || update.state.surfaceHeight < desiredHeight) { in doUpdateSprites()
166 status_t status = update.state.surfaceControl->setSize(desiredWidth, desiredHeight); in doUpdateSprites()
170 desiredWidth, desiredHeight); in doUpdateSprites()
173 update.state.surfaceHeight = desiredHeight; in doUpdateSprites()
/frameworks/base/packages/SystemUI/plugin/src/com/android/systemui/plugins/qs/
DQS.java45 void setHeightOverride(int desiredHeight); in setHeightOverride() argument
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
DPagingIndicator.java362 int desiredHeight = getDesiredHeight(); in onMeasure() local
369 height = Math.min(desiredHeight, MeasureSpec.getSize(heightMeasureSpec)); in onMeasure()
373 height = desiredHeight; in onMeasure()
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/car/
DCarQSFragment.java108 public void setHeightOverride(int desiredHeight) { in setHeightOverride() argument
/frameworks/support/wear/src/android/support/wear/widget/
DCircledImageView.java327 float desiredHeight = radius * 2; in onMeasure() local
348 height = (int) Math.min(desiredHeight, heightSize); in onMeasure()
350 height = (int) desiredHeight; in onMeasure()
/frameworks/base/core/java/android/service/wallpaper/
DWallpaperService.java550 public void onDesiredSizeChanged(int desiredWidth, int desiredHeight) { in onDesiredSizeChanged() argument
979 void doDesiredSizeChanged(int desiredWidth, int desiredHeight) { in doDesiredSizeChanged() argument
982 + desiredWidth + "," + desiredHeight + "): " + this); in doDesiredSizeChanged()
984 mIWallpaperEngine.mReqHeight = desiredHeight; in doDesiredSizeChanged()
985 onDesiredSizeChanged(desiredWidth, desiredHeight); in doDesiredSizeChanged()

12