Searched refs:mCustomView (Results 1 - 15 of 15) sorted by relevance

/frameworks/base/core/java/android/webkit/
H A DFindActionModeCallback.java44 private View mCustomView; field in class:FindActionModeCallback
56 mCustomView = LayoutInflater.from(context).inflate(
58 mEditText = (EditText) mCustomView.findViewById(
63 mMatches = (TextView) mCustomView.findViewById(
209 mode.setCustomView(mCustomView);
284 View view = (View) mCustomView.getParent();
286 view = mCustomView;
/frameworks/base/core/java/com/android/internal/widget/
H A DActionBarContextView.java47 private View mCustomView; field in class:ActionBarContextView
142 if (mCustomView != null) {
143 removeView(mCustomView);
145 mCustomView = view;
260 mCustomView = null;
335 if (mTitleLayout != null && mCustomView == null) {
351 if (mCustomView != null) {
352 ViewGroup.LayoutParams lp = mCustomView.getLayoutParams();
361 mCustomView.measure(MeasureSpec.makeMeasureSpec(customWidth, customWidthMode),
398 if (mTitleLayout != null && mCustomView
[all...]
H A DToolbarWidgetWrapper.java71 private View mCustomView; field in class:ToolbarWidgetWrapper
431 if ((changed & ActionBar.DISPLAY_SHOW_CUSTOM) != 0 && mCustomView != null) {
433 mToolbar.addView(mCustomView);
435 mToolbar.removeView(mCustomView);
561 if (mCustomView != null && (mDisplayOpts & ActionBar.DISPLAY_SHOW_CUSTOM) != 0) {
562 mToolbar.removeView(mCustomView);
564 mCustomView = view;
566 mToolbar.addView(mCustomView);
572 return mCustomView;
H A DScrollingTabContainerView.java366 private View mCustomView; field in class:ScrollingTabContainerView.TabView
419 mCustomView = custom;
426 if (mCustomView != null) {
427 removeView(mCustomView);
428 mCustomView = null;
/frameworks/support/frameworks/support/samples/Support7Demos/src/main/java/com/example/android/supportv7/app/
H A DToolbarDisplayOptions.java38 private View mCustomView; field in class:ToolbarDisplayOptions
58 mCustomView = getLayoutInflater().inflate(R.layout.action_bar_display_options_custom, null);
111 bar.setCustomView(mCustomView, lp);
H A DActionBarDisplayOptions.java37 private View mCustomView; field in class:ActionBarDisplayOptions
54 mCustomView = getLayoutInflater().inflate(R.layout.action_bar_display_options_custom, null);
59 bar.setCustomView(mCustomView, mCustomViewLayoutParams);
115 bar.setCustomView(mCustomView, lp);
/frameworks/support/samples/Support7Demos/src/main/java/com/example/android/supportv7/app/
H A DToolbarDisplayOptions.java38 private View mCustomView; field in class:ToolbarDisplayOptions
58 mCustomView = getLayoutInflater().inflate(R.layout.action_bar_display_options_custom, null);
111 bar.setCustomView(mCustomView, lp);
H A DActionBarDisplayOptions.java37 private View mCustomView; field in class:ActionBarDisplayOptions
54 mCustomView = getLayoutInflater().inflate(R.layout.action_bar_display_options_custom, null);
59 bar.setCustomView(mCustomView, mCustomViewLayoutParams);
115 bar.setCustomView(mCustomView, lp);
/frameworks/support/v7/appcompat/src/main/java/androidx/appcompat/widget/
H A DActionBarContextView.java48 private View mCustomView; field in class:ActionBarContextView
101 if (mCustomView != null) {
102 removeView(mCustomView);
104 mCustomView = view;
201 mCustomView = null;
276 if (mTitleLayout != null && mCustomView == null) {
291 if (mCustomView != null) {
292 ViewGroup.LayoutParams lp = mCustomView.getLayoutParams();
301 mCustomView.measure(MeasureSpec.makeMeasureSpec(customWidth, customWidthMode),
337 if (mTitleLayout != null && mCustomView
[all...]
H A DToolbarWidgetWrapper.java75 private View mCustomView; field in class:ToolbarWidgetWrapper
410 if ((changed & ActionBar.DISPLAY_SHOW_CUSTOM) != 0 && mCustomView != null) {
412 mToolbar.addView(mCustomView);
414 mToolbar.removeView(mCustomView);
540 if (mCustomView != null && (mDisplayOpts & ActionBar.DISPLAY_SHOW_CUSTOM) != 0) {
541 mToolbar.removeView(mCustomView);
543 mCustomView = view;
545 mToolbar.addView(mCustomView);
551 return mCustomView;
H A DScrollingTabContainerView.java388 private View mCustomView; field in class:ScrollingTabContainerView.TabView
457 mCustomView = custom;
464 if (mCustomView != null) {
465 removeView(mCustomView);
466 mCustomView = null;
/frameworks/base/core/java/com/android/internal/view/
H A DStandaloneActionMode.java37 private WeakReference<View> mCustomView; field in class:StandaloneActionMode
89 mCustomView = view != null ? new WeakReference<View>(view) : null;
125 return mCustomView != null ? mCustomView.get() : null;
/frameworks/support/v7/appcompat/src/main/java/androidx/appcompat/view/
H A DStandaloneActionMode.java43 private WeakReference<View> mCustomView; field in class:StandaloneActionMode
95 mCustomView = view != null ? new WeakReference<View>(view) : null;
131 return mCustomView != null ? mCustomView.get() : null;
/frameworks/base/core/java/com/android/internal/app/
H A DWindowDecorActionBar.java978 private WeakReference<View> mCustomView; field in class:WindowDecorActionBar.ActionModeImpl
1059 mCustomView = new WeakReference<View>(view);
1105 return mCustomView != null ? mCustomView.get() : null;
1154 private View mCustomView; field in class:WindowDecorActionBar.TabImpl
1179 return mCustomView;
1184 mCustomView = view;
/frameworks/support/v7/appcompat/src/main/java/androidx/appcompat/app/
H A DWindowDecorActionBar.java991 private WeakReference<View> mCustomView; field in class:WindowDecorActionBar.ActionModeImpl
1071 mCustomView = new WeakReference<View>(view);
1117 return mCustomView != null ? mCustomView.get() : null;
1169 private View mCustomView; field in class:WindowDecorActionBar.TabImpl
1194 return mCustomView;
1199 mCustomView = view;

Completed in 168 milliseconds