Home | History | Annotate | Download | only in widget

Lines Matching refs:customView

1017         View customView = null;
1019 customView = mExpandedActionView;
1022 customView = mCustomNavView;
1025 if (customView != null) {
1026 final ViewGroup.LayoutParams lp = generateLayoutParams(customView.getLayoutParams());
1063 customView.measure(
1066 availableWidth -= horizontalMargin + customView.getMeasuredWidth();
1172 View customView = null;
1174 customView = mExpandedActionView;
1177 customView = mCustomNavView;
1179 if (customView != null) {
1181 ViewGroup.LayoutParams lp = customView.getLayoutParams();
1185 final int navWidth = customView.getMeasuredWidth();
1245 ypos = ((paddedBottom - paddedTop) - customView.getMeasuredHeight()) / 2;
1251 ypos = getHeight() - getPaddingBottom() - customView.getMeasuredHeight()
1255 final int customWidth = customView.getMeasuredWidth();
1256 customView.layout(xpos, ypos, xpos + customWidth,
1257 ypos + customView.getMeasuredHeight());