Searched refs:bottom (Results 126 - 150 of 162) sorted by relevance

1234567

/packages/apps/Settings/src/com/android/settings/applications/
H A DLinearColorBar.java72 mRect.bottom = getHeight();
/packages/apps/Settings/src/com/android/settings/widget/
H A DPieChartView.java126 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
H A DKey.java484 mHitBox.bottom = params.mOccupiedHeight + params.mBottomPadding;
727 final int bottom = top + mHeight;
729 final int edgeY = y < top ? top : (y > bottom ? bottom : y);
H A DKeyboardView.java497 final int bgHeight = key.mHeight + padding.top + padding.bottom;
504 if (bgWidth != bounds.right || bgHeight != bounds.bottom) {
672 // Draw popup hint "..." at the bottom right corner of the key.
935 // The distance between the top edge of the parent key and the bottom of the visible part
/packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/
H A DComposingView.java195 height = mFmi.bottom - mFmi.top + mPaddingTop + mPaddingBottom;
H A DSoftKeyboard.java110 /** The top and bottom margin of a key. */
244 return mSkbCoreHeight + padding.top + padding.bottom;
/packages/apps/Contacts/src/com/android/contacts/list/
H A DContactTileAdapter.java580 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
587 super.onLayout(changed, left, top, right, bottom);
638 // Let height = image size + bottom paddding.
H A DContactListItemView.java433 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
434 final int height = bottom - top;
462 // Put horizontal divider at the bottom
559 // Label and Data align bottom.
600 bounds.bottom = bounds.top + mBoundsWithoutHeader.height();
682 * Sets the flag that determines whether a divider should drawn at the bottom
/packages/apps/Email/src/com/android/email/activity/
H A DMessageListItem.java415 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
416 super.onLayout(changed, left, top, right, bottom);
/packages/apps/Phone/src/com/android/phone/
H A DDTMFTwelveKeyDialer.java660 final int bottom = (v.getHeight() - v.getPaddingBottom());
670 if ((x > left) && (x < right) && (y > top) && (y < bottom)) {
/packages/apps/VideoEditor/src/com/android/videoeditor/widgets/
H A DMediaLinearLayout.java1269 // Top and bottom position are fixed for media item views. For transition views,
1272 final int bottom = b - t;
1291 view.layout(left, top, right, bottom);
1294 view.layout(left, top, right, bottom);
1302 bottom - mTransitionVerticalInset);
1312 bottom - mSelectedView.getPaddingBottom());
1318 bottom - mSelectedView.getPaddingBottom());
1320 view.layout(0, top, leftViewWidth, bottom);
1323 view.layout(left, top, getWidth(), bottom);
/packages/apps/Contacts/src/com/android/contacts/
H A DContactsUtils.java296 * Returns the {@link Rect} with left, top, right, and bottom coordinates
309 rect.bottom = (int) ((pos[1] + view.getHeight()) * appScale + 0.5f);
/packages/apps/DeskClock/src/com/android/deskclock/
H A DCircleTimerView.java169 mArcRect.bottom = yCenter + radius;
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
H A DPhotoView.java473 boolean changeSize, int left, int top, int right, int bottom) {
475 int h = bottom - top;
522 int b = mCameraRelativeFrame.bottom;
809 if (r.left >= w || r.right <= 0 || r.top >= h || r.bottom <= 0) {
472 onLayout( boolean changeSize, int left, int top, int right, int bottom) argument
H A DGLRootView.java268 boolean changed, int left, int top, int right, int bottom) {
267 onLayout( boolean changed, int left, int top, int right, int bottom) argument
H A DTiledTexture.java263 y + (src.bottom - y0) * scaleY);
/packages/apps/Camera/src/com/android/camera/
H A DUtil.java631 + "," + rect.right + "," + rect.bottom + ")");
638 rect.bottom = Math.round(rectF.bottom);
/packages/apps/Launcher2/src/com/android/launcher2/
H A DCellLayout.java402 r.bottom = (int) (r.bottom * scale + 0.5f);
913 int bottom = top + getHeight() - getPaddingTop() - getPaddingBottom();
914 r.set(left, top, right, bottom);
1193 result[1] -= bottomOverhang; // Snap to bottom
1652 int bottom = cs.y + cs.spanY;
1654 if (bottom > edge[j]) {
1655 edge[j] = bottom;
1831 pushDistance = clusterRect.bottom - rectOccupiedByPotentialDrop.top;
1834 pushDistance = rectOccupiedByPotentialDrop.bottom
[all...]
H A DDragLayer.java761 mLeftHoverDrawable.getIntrinsicWidth(), childRect.bottom);
765 childRect.top, width, childRect.bottom);
/packages/apps/DeskClock/src/com/android/deskclock/widget/multiwaveview/
H A DGlowPadView.java1020 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
1021 super.onLayout(changed, left, top, right, bottom);
1023 final int height = bottom - top;
/packages/apps/Gallery2/src/com/android/gallery3d/app/
H A DPhotoPage.java268 boolean changed, int left, int top, int right, int bottom) {
269 mPhotoView.layout(0, 0, right - left, bottom - top);
271 mDetailsHelper.layout(left, mActionBar.getHeight(), right, bottom);
/packages/apps/Calendar/src/com/android/calendar/agenda/
H A DAgendaListView.java306 if (r.bottom - r.top <= mWindowAdapter.getStickyHeaderHeight()) {
/packages/apps/MusicFX/src/com/android/musicfx/seekbar/
H A DAbsSeekBar.java342 bottomBound = oldBounds.bottom;
/packages/apps/Settings/src/com/android/settings/fuelgauge/
H A DBatteryHistoryChart.java86 int bottom = top + height;
92 canvas.drawRect(lastX, top, x, bottom, mPaints[lastBin]);
/packages/apps/Settings/src/com/android/settings/wifi/
H A DWifiSettings.java1095 int bottom = resources.getDimensionPixelSize(R.dimen.setup_margin_bottom);
1100 bottom);

Completed in 486 milliseconds

1234567