HomeSort by relevance Sort by last modified time
    Searched refs:heightDiff (Results 1 - 5 of 5) sorted by null

  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
QSAnimator.java 172 int heightDiff = height - mQs.getHeader().getBottom()
174 firstPageBuilder.addFloat(tileLayout, "translationY", heightDiff, 0);
221 firstPageBuilder.addFloat(tileView, "translationY", heightDiff, 0);
229 firstPageBuilder.addFloat(tileView, "translationY", -heightDiff, 0);
238 firstPageBuilder.addFloat(brightness, "translationY", heightDiff, 0);
QSFragment.java 313 int heightDiff = mQSPanel.getBottom() - mHeader.getBottom() + mHeader.getPaddingBottom()
315 float panelTranslationY = translationScaleY * heightDiff;
322 mQSPanel.setTranslationY(translationScaleY * heightDiff);
  /packages/apps/TV/src/com/android/tv/dvr/ui/browse/
DetailsContentPresenter.java 235 private void showFullText(int heightDiff) {
239 ViewUtils.createHeightAnimator(detailsFrame, nowHeight, nowHeight + heightDiff);
245 View.TRANSLATION_Y, 0f, -(heightDiff / 2)));
  /packages/apps/Camera2/src/com/android/camera/ui/
BottomBar.java 234 int heightDiff = parentRect.height() - buttonRect.height();
238 buttonRect.top -= heightDiff/2;
239 buttonRect.bottom += heightDiff/2;
  /packages/apps/Camera2/src/com/android/camera/util/
CameraUtil.java 552 double heightDiff = Math.abs(size.getHeight() - targetHeight);
553 if (heightDiff < minDiff) {
555 minDiff = heightDiff;
556 } else if (heightDiff == minDiff) {
561 minDiff = heightDiff;
    [all...]

Completed in 554 milliseconds