Home
last modified time | relevance | path

Searched refs:scaledChildHeight (Results 1 – 3 of 3) sorted by relevance

/development/samples/HoneycombGallery/src/com/example/android/hcgallery/
DFitCenterFrameLayout.java98 final int scaledChildHeight = unpaddedHeight * parentUnpaddedWidth in onLayout() local
102 parentTop + (parentHeight - scaledChildHeight) / 2, in onLayout()
104 parentTop + (parentHeight + scaledChildHeight) / 2); in onLayout()
DCameraFragment.java257 final int scaledChildHeight = previewHeight * width in onLayout() local
259 child.layout(0, (height - scaledChildHeight) / 2, width, in onLayout()
260 (height + scaledChildHeight) / 2); in onLayout()
/development/samples/ApiDemos/src/com/example/android/apis/graphics/
DCameraPreview.java240 final int scaledChildHeight = previewHeight * width / previewWidth; in onLayout() local
241 child.layout(0, (height - scaledChildHeight) / 2, in onLayout()
242 width, (height + scaledChildHeight) / 2); in onLayout()