OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:childheight
(Results
1 - 10
of
10
) sorted by null
/frameworks/base/core/tests/coretests/src/android/widget/layout/linear/
LinearLayoutEditTextsTest.java
52
final int
childHeight
= mChild.getHeight();
55
assertEquals(containerHeight,
childHeight
);
/development/samples/Home/src/com/example/android/home/
ApplicationsStackLayout.java
199
int
childHeight
= mButton.getMeasuredHeight();
201
childTop -=
childHeight
+ mMarginBottom;
202
mButton.layout(childLeft, childTop, childLeft + childWidth, childTop +
childHeight
);
222
int
childHeight
= mButton.getMeasuredHeight();
225
mButton.layout(childLeft, childTop, childLeft + childWidth, childTop +
childHeight
);
245
int
childHeight
;
260
childHeight
= view.getMeasuredHeight();
263
childTop -=
childHeight
+ mMarginBottom;
266
childTop +=
childHeight
+ mMarginBottom;
280
view.layout(childLeft, childTop, childLeft + childWidth, childTop +
childHeight
);
[
all
...]
/frameworks/base/core/java/android/widget/
LinearLayout.java
389
final int
childHeight
= child.getMeasuredHeight();
391
mTotalLength = Math.max(totalLength, totalLength +
childHeight
+ lp.topMargin +
395
largestChildHeight = Math.max(
childHeight
, largestChildHeight);
516
int
childHeight
= child.getMeasuredHeight() + share;
517
if (
childHeight
< 0) {
518
childHeight
= 0;
522
MeasureSpec.makeMeasureSpec(
childHeight
, MeasureSpec.EXACTLY));
729
final int
childHeight
= child.getMeasuredHeight() + margin;
742
maxDescent[index] = Math.max(maxDescent[index],
childHeight
- childBaseline);
746
maxHeight = Math.max(maxHeight,
childHeight
);
[
all
...]
SlidingDrawer.java
320
int
childHeight
= handle.getMeasuredHeight();
329
childTop = mExpanded ? mTopOffset : height -
childHeight
+ mBottomOffset;
331
content.layout(0, mTopOffset +
childHeight
, content.getMeasuredWidth(),
332
mTopOffset +
childHeight
+ content.getMeasuredHeight());
335
childTop = (height -
childHeight
) / 2;
342
handle.layout(childLeft, childTop, childLeft + childWidth, childTop +
childHeight
);
636
final int
childHeight
= mHandleHeight;
637
int height = mBottom - mTop -
childHeight
- mTopOffset;
640
content.layout(0, mTopOffset +
childHeight
, content.getMeasuredWidth(),
641
mTopOffset +
childHeight
+ content.getMeasuredHeight())
[
all
...]
RelativeLayout.java
474
final int
childHeight
= child.getMeasuredHeight();
475
params.mTop = height - mPaddingBottom -
childHeight
;
476
params.mBottom = params.mTop +
childHeight
;
[
all
...]
Gallery.java
815
int
childHeight
= duringLayout ? child.getMeasuredHeight() : child.getHeight();
825
- mSpinnerPadding.top -
childHeight
;
829
childTop = myHeight - mSpinnerPadding.bottom -
childHeight
;
[
all
...]
GridView.java
[
all
...]
ScrollView.java
240
int
childHeight
= child.getHeight();
241
return getHeight() <
childHeight
+ mPaddingTop + mPaddingBottom;
[
all
...]
ListView.java
[
all
...]
/packages/apps/Mms/src/com/android/mms/ui/
SlideView.java
458
int
childHeight
= getChildAt(0).getHeight();
460
mBottomY = height <
childHeight
?
childHeight
- height : 0;
Completed in 946 milliseconds