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

  /packages/apps/Camera2/src/com/android/camera/
CaptureLayoutHelper.java 47 private int mWindowHeight = 0;
105 if (mWindowWidth == 0 || mWindowHeight == 0) {
108 mPositionConfiguration = getPositionConfiguration(mWindowWidth, mWindowHeight, mAspectRatio,
153 return new RectF(0, 0, mWindowWidth, mWindowHeight);
178 if (mWindowHeight > mWindowWidth) {
226 mWindowHeight = height;
  /packages/apps/TV/src/com/android/tv/ui/
TvViewUiManager.java 73 private int mWindowHeight;
143 mWindowHeight = size.y;
163 if (mWindowWidth != windowWidth || mWindowHeight != windowHeight) {
165 mWindowHeight = windowHeight;
488 videoDisplayAspectRatio = (float) mWindowWidth / mWindowHeight;
505 int availableAreaHeight = availableAreaWidth * mWindowHeight / mWindowWidth;
551 int tvViewFrameTop = (mWindowHeight - availableAreaHeight) / 2;
586 lp.height = mWindowHeight - topMargin - bottomMargin;
  /packages/apps/TV/src/com/android/tv/dvr/ui/playback/
DvrPlaybackOverlayFragment.java 89 private int mWindowHeight;
136 mWindowHeight = size.y;
137 mWindowAspectRatio = mAppliedAspectRatio = (float) mWindowWidth / mWindowHeight;
283 mWindowHeight = windowHeight;
284 mWindowAspectRatio = (float) mWindowWidth / mWindowHeight;
390 int newPadding = (mWindowWidth - Math.round(mWindowHeight * videoAspectRatio)) / 2;
393 int newPadding = (mWindowHeight - Math.round(mWindowWidth / videoAspectRatio)) / 2;

Completed in 164 milliseconds