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

/frameworks/base/core/java/android/webkit/
H A DFindActionModeCallback.java43 private View mCustomView; field in class:FindActionModeCallback
55 mCustomView = LayoutInflater.from(context).inflate(
57 mEditText = (EditText) mCustomView.findViewById(
62 mMatches = (TextView) mCustomView.findViewById(
206 mode.setCustomView(mCustomView);
281 View view = (View) mCustomView.getParent();
283 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.java367 private View mCustomView; field in class:ScrollingTabContainerView.TabView
420 mCustomView = custom;
427 if (mCustomView != null) {
428 removeView(mCustomView);
429 mCustomView = null;
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DActionBarContextView.java48 private View mCustomView; field in class:ActionBarContextView
100 if (mCustomView != null) {
101 removeView(mCustomView);
103 mCustomView = view;
199 mCustomView = null;
274 if (mTitleLayout != null && mCustomView == null) {
289 if (mCustomView != null) {
290 ViewGroup.LayoutParams lp = mCustomView.getLayoutParams();
299 mCustomView.measure(MeasureSpec.makeMeasureSpec(customWidth, customWidthMode),
335 if (mTitleLayout != null && mCustomView
[all...]
H A DToolbarWidgetWrapper.java74 private View mCustomView; field in class:ToolbarWidgetWrapper
409 if ((changed & ActionBar.DISPLAY_SHOW_CUSTOM) != 0 && mCustomView != null) {
411 mToolbar.addView(mCustomView);
413 mToolbar.removeView(mCustomView);
539 if (mCustomView != null && (mDisplayOpts & ActionBar.DISPLAY_SHOW_CUSTOM) != 0) {
540 mToolbar.removeView(mCustomView);
542 mCustomView = view;
544 mToolbar.addView(mCustomView);
550 return mCustomView;
H A DScrollingTabContainerView.java388 private View mCustomView; field in class:ScrollingTabContainerView.TabView
459 mCustomView = custom;
466 if (mCustomView != null) {
467 removeView(mCustomView);
468 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/frameworks/support/samples/Support7Demos/src/com/example/android/supportv7/app/
H A DActionBarDisplayOptions.java36 private View mCustomView; field in class:ActionBarDisplayOptions
53 mCustomView = getLayoutInflater().inflate(R.layout.action_bar_display_options_custom, null);
58 bar.setCustomView(mCustomView, mCustomViewLayoutParams);
114 bar.setCustomView(mCustomView, lp);
H A DToolbarDisplayOptions.java37 private View mCustomView; field in class:ToolbarDisplayOptions
57 mCustomView = getLayoutInflater().inflate(R.layout.action_bar_display_options_custom, null);
110 bar.setCustomView(mCustomView, lp);
/frameworks/support/samples/Support7Demos/src/com/example/android/supportv7/app/
H A DActionBarDisplayOptions.java36 private View mCustomView; field in class:ActionBarDisplayOptions
53 mCustomView = getLayoutInflater().inflate(R.layout.action_bar_display_options_custom, null);
58 bar.setCustomView(mCustomView, mCustomViewLayoutParams);
114 bar.setCustomView(mCustomView, lp);
H A DToolbarDisplayOptions.java37 private View mCustomView; field in class:ToolbarDisplayOptions
57 mCustomView = getLayoutInflater().inflate(R.layout.action_bar_display_options_custom, null);
110 bar.setCustomView(mCustomView, lp);
/frameworks/support/v7/appcompat/src/android/support/v7/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.java987 private WeakReference<View> mCustomView; field in class:WindowDecorActionBar.ActionModeImpl
1068 mCustomView = new WeakReference<View>(view);
1114 return mCustomView != null ? mCustomView.get() : null;
1163 private View mCustomView; field in class:WindowDecorActionBar.TabImpl
1188 return mCustomView;
1193 mCustomView = view;
/frameworks/support/v7/appcompat/src/android/support/v7/app/
H A DWindowDecorActionBar.java970 private WeakReference<View> mCustomView; field in class:WindowDecorActionBar.ActionModeImpl
1050 mCustomView = new WeakReference<View>(view);
1096 return mCustomView != null ? mCustomView.get() : null;
1146 private View mCustomView; field in class:WindowDecorActionBar.TabImpl
1171 return mCustomView;
1176 mCustomView = view;
/frameworks/support/design/src/android/support/design/widget/
H A DTabLayout.java1235 private View mCustomView; field in class:TabLayout.Tab
1273 return mCustomView;
1291 mCustomView = view;
1484 mCustomView = null;
1493 private View mCustomView; field in class:TabLayout.TabView
1546 if (mCustomView != null) {
1547 mCustomView.setSelected(selected);
1656 mCustomView = custom;
1672 if (mCustomView != null) {
1673 removeView(mCustomView);
[all...]

Completed in 4725 milliseconds