Home
last modified time | relevance | path

Searched refs:customView (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/core/java/com/android/internal/widget/
DActionBarView.java1004 View customView = null; in onMeasure() local
1006 customView = mExpandedActionView; in onMeasure()
1009 customView = mCustomNavView; in onMeasure()
1012 if (customView != null) { in onMeasure()
1013 final ViewGroup.LayoutParams lp = generateLayoutParams(customView.getLayoutParams()); in onMeasure()
1050 customView.measure( in onMeasure()
1053 availableWidth -= horizontalMargin + customView.getMeasuredWidth(); in onMeasure()
1159 View customView = null; in onLayout() local
1161 customView = mExpandedActionView; in onLayout()
1164 customView = mCustomNavView; in onLayout()
[all …]
/frameworks/support/v7/appcompat/src/android/support/v7/app/
DAlertController.java426 final View customView; in setupView() local
428 customView = mView; in setupView()
431 customView = inflater.inflate(mViewLayoutResId, customPanel, false); in setupView()
433 customView = null; in setupView()
436 final boolean hasCustomView = customView != null; in setupView()
437 if (!hasCustomView || !canTextInput(customView)) { in setupView()
444 custom.addView(customView, new LayoutParams(MATCH_PARENT, MATCH_PARENT)); in setupView()
/frameworks/base/tools/layoutlib/bridge/src/android/view/
DBridgeInflater.java218 Object customView = mLayoutlibCallback.loadView(name, mConstructorSignature, in loadCustomView() local
221 if (customView instanceof View) { in loadCustomView()
222 return (View)customView; in loadCustomView()
/frameworks/base/core/java/com/android/internal/app/
DAlertController.java567 final View customView; in setupCustomContent() local
569 customView = mView; in setupCustomContent()
572 customView = inflater.inflate(mViewLayoutResId, customPanel, false); in setupCustomContent()
574 customView = null; in setupCustomContent()
577 final boolean hasCustomView = customView != null; in setupCustomContent()
578 if (!hasCustomView || !canTextInput(customView)) { in setupCustomContent()
585 custom.addView(customView, new LayoutParams(MATCH_PARENT, MATCH_PARENT)); in setupCustomContent()