Searched refs:childHeight (Results 1 – 4 of 4) sorted by relevance
/development/samples/Home/src/com/example/android/home/ |
D | ApplicationsStackLayout.java | 199 int childHeight = mButton.getMeasuredHeight(); in layoutVertical() local 201 childTop -= childHeight + mMarginBottom; in layoutVertical() 202 mButton.layout(childLeft, childTop, childLeft + childWidth, childTop + childHeight); in layoutVertical() 222 int childHeight = mButton.getMeasuredHeight(); in layoutHorizontal() local 225 mButton.layout(childLeft, childTop, childLeft + childWidth, childTop + childHeight); in layoutHorizontal() 245 int childHeight; in stackApplications() local 260 childHeight = view.getMeasuredHeight(); in stackApplications() 263 childTop -= childHeight + mMarginBottom; in stackApplications() 266 childTop += childHeight + mMarginBottom; in stackApplications() 280 view.layout(childLeft, childTop, childLeft + childWidth, childTop + childHeight); in stackApplications()
|
/development/samples/devbytes/animation/ListViewCellInsertion/src/com/example/android/insertingcells/ |
D | InsertionListView.java | 210 int childHeight = child.getHeight() + getDividerHeight(); in addRow() 211 int startTop = top + (i > 0 ? childHeight : -childHeight); in addRow() 234 int childHeight = startBounds.bottom - startBounds.top + getDividerHeight(); in addRow() 236 endBounds.offset(0, childHeight); in addRow()
|
/development/samples/devbytes/animation/ListViewRemovalAnimation/src/com/example/android/listviewremovalanimation/ |
D | ListViewRemovalAnimation.java | 225 int childHeight = child.getHeight() + listview.getDividerHeight(); in animateRemoval() 226 startTop = top + (i > 0 ? childHeight : -childHeight); in animateRemoval()
|
/development/samples/devbytes/animation/ListViewItemAnimations/src/com/example/android/listviewitemanimations/ |
D | ListViewItemAnimations.java | 297 int childHeight = child.getHeight() + listview.getDividerHeight(); in animateOtherViews() 298 startTop = top + (i > 0 ? childHeight : -childHeight); in animateOtherViews()
|