Searched defs:bottom (Results 1 - 25 of 105) sorted by relevance

12345

/packages/apps/Settings/src/com/android/settings/drawable/
H A DInsetBoundsDrawable.java34 public void setBounds(int left, int top, int right, int bottom) { argument
35 super.setBounds(left + mInsetBoundsSides, top, right - mInsetBoundsSides, bottom);
/packages/apps/UnifiedEmail/src/com/android/mail/ui/
H A DFolderListLayout.java47 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
49 super.onLayout(changed, left, top, right, bottom);
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/compat/
H A DTextViewCompatUtils.java36 final Drawable start, final Drawable top, final Drawable end, final Drawable bottom) {
38 textView.setCompoundDrawablesWithIntrinsicBounds(start, top, end, bottom);
42 start, top, end, bottom);
35 setCompoundDrawablesRelativeWithIntrinsicBounds(final TextView textView, final Drawable start, final Drawable top, final Drawable end, final Drawable bottom) argument
H A DViewCompatUtils.java50 final int end, final int bottom) {
52 view.setPadding(start, top, end, bottom);
55 CompatUtils.invoke(view, null, METHOD_setPaddingRelative, start, top, end, bottom);
49 setPaddingRelative(final View view, final int start, final int top, final int end, final int bottom) argument
/packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
H A DSoftLandingInterpolator.java34 private final float bottom; field in class:SoftLandingInterpolator
43 bottom = mI - epsilon;
45 upperRange = 1f - bottom;
50 final float s = slide.getInterpolation((input - bottom) / upperRange) * (1f - mO) + mO;
53 if (input < bottom) {
56 final float alpha = (input - bottom) / (top - bottom);
/packages/apps/Calculator/src/com/android/calculator2/
H A DCalculatorPadLayout.java59 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
69 Math.round((float) (bottom - top - paddingTop - paddingBottom)) / mRowCount;
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/ui/
H A DSelectionRenderer.java24 public static void drawSelection(Canvas canvas, int left, int top, int right, int bottom, argument
27 canvas.drawRect(left, bottom - stroke, right, bottom, paint);
28 canvas.drawRect(left, top, left + stroke, bottom, paint);
29 canvas.drawRect(right - stroke, top, right, bottom, paint);
32 public static void drawSelection(Canvas canvas, int left, int top, int right, int bottom, argument
35 canvas.drawRect(left, bottom - stroke, right, bottom, selectPaint);
36 canvas.drawRect(left, top, left + stroke, bottom, selectPaint);
37 canvas.drawRect(right - stroke, top, right, bottom, selectPain
[all...]
/packages/apps/Browser/src/com/android/browser/view/
H A DStopProgressView.java73 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
74 super.onLayout(changed, left, top, right, bottom);
76 mHeight = (bottom - top) * 2 / 3;
/packages/apps/Camera2/src/com/android/camera/ui/
H A DPreviewStatusListener.java50 int bottom, int oldLeft, int oldTop, int oldRight, int oldBottom);
49 onPreviewLayoutChanged(View v, int left, int top, int right, int bottom, int oldLeft, int oldTop, int oldRight, int oldBottom) argument
H A DProgressOverlay.java45 public void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
46 super.onLayout(changed, left, top, right, bottom);
49 mCenterY = (bottom - top) / 2;
H A DRotateLayout.java54 boolean change, int left, int top, int right, int bottom) {
56 int height = bottom - top;
53 onLayout( boolean change, int left, int top, int right, int bottom) argument
H A DStickyBottomCaptureLayout.java38 * always laid out to the left of or above bottom bar in landscape or portrait
100 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
108 (int) uncoveredPreviewRect.right, (int) uncoveredPreviewRect.bottom);
121 // Layout bottom bar.
124 (int) bottomBarRect.right, (int) bottomBarRect.bottom);
163 y = uncoveredPreviewRect.bottom;
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
H A DScrollBarView.java56 boolean changed, int left, int top, int right, int bottom) {
58 mBarHeight = bottom - top;
55 onLayout( boolean changed, int left, int top, int right, int bottom) argument
H A DDetailsHelper.java57 public void layout(int left, int top, int right, int bottom) { argument
61 MeasureSpec.makeMeasureSpec(bottom - top, MeasureSpec.AT_MOST));
H A DEdgeView.java54 boolean changeSize, int left, int top, int right, int bottom) {
58 int h = bottom - top;
60 if ((i & 1) == 0) { // top or bottom
53 onLayout( boolean changeSize, int left, int top, int right, int bottom) argument
/packages/apps/LegacyCamera/src/com/android/camera/ui/
H A DRotateLayout.java49 boolean change, int left, int top, int right, int bottom) {
51 int height = bottom - top;
48 onLayout( boolean change, int left, int top, int right, int bottom) argument
H A DIndicatorControlBar.java88 boolean changed, int left, int top, int right, int bottom) {
93 // bottom.
96 int height = bottom - top;
87 onLayout( boolean changed, int left, int top, int right, int bottom) argument
H A DZoomControlBar.java60 // landscape mode, the zoom-in bottom should be on the top, so the
126 boolean changed, int left, int top, int right, int bottom) {
128 int height = bottom - top;
125 onLayout( boolean changed, int left, int top, int right, int bottom) argument
/packages/apps/PackageInstaller/src/com/android/packageinstaller/permission/ui/
H A DManualLayoutFrame.java67 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
71 bottom = top + mDesiredHeight;
73 super.onLayout(changed, left, top, right, bottom);
/packages/apps/UnifiedEmail/src/com/android/mail/browse/
H A DBadgeSpan.java78 int y, int bottom, Paint paint) {
97 final RectF rect = new RectF(x, top, x + bgWidth, bottom);
77 draw(Canvas canvas, CharSequence text, int start, int end, float x, int top, int y, int bottom, Paint paint) argument
/packages/apps/Camera/src/com/android/camera/ui/
H A DOverlayRenderer.java66 public void layout(int left, int top, int right, int bottom) { argument
70 mBottom = bottom;
H A DRotateLayout.java63 boolean change, int left, int top, int right, int bottom) {
65 int height = bottom - top;
62 onLayout( boolean change, int left, int top, int right, int bottom) argument
/packages/apps/Camera2/src/com/android/camera/tinyplanet/
H A DTinyPlanetPreview.java103 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
104 super.onLayout(changed, left, top, right, bottom);
107 int height = bottom - top;
/packages/apps/ContactsCommon/src/com/android/contacts/common/widget/
H A DProportionalLayout.java122 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
128 child.layout(0, 0, right-left, bottom-top);
/packages/apps/Launcher2/src/com/android/launcher2/
H A DPagedViewGridLayout.java81 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
82 super.onLayout(changed, left, top, right, bottom);
95 int bottom = child.getBottom();
96 result = result || (event.getY() < bottom);

Completed in 1144 milliseconds

12345