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

  /development/samples/HoneycombGallery/src/com/example/android/hcgallery/
FitCenterFrameLayout.java 98 final int scaledChildHeight = unpaddedHeight * parentUnpaddedWidth
102 parentTop + (parentHeight - scaledChildHeight) / 2,
104 parentTop + (parentHeight + scaledChildHeight) / 2);
CameraFragment.java 257 final int scaledChildHeight = previewHeight * width
259 child.layout(0, (height - scaledChildHeight) / 2, width,
260 (height + scaledChildHeight) / 2);
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
CameraPreview.java 240 final int scaledChildHeight = previewHeight * width / previewWidth;
241 child.layout(0, (height - scaledChildHeight) / 2,
242 width, (height + scaledChildHeight) / 2);

Completed in 72 milliseconds