HomeSort by relevance Sort by last modified time
    Searched refs:mCustomView (Results 1 - 11 of 11) sorted by null

  /frameworks/base/core/java/com/android/internal/view/
StandaloneActionMode.java 37 private WeakReference<View> mCustomView;
88 mCustomView = view != null ? new WeakReference<View>(view) : null;
124 return mCustomView != null ? mCustomView.get() : null;
  /development/samples/ApiDemos/src/com/example/android/apis/app/
ActionBarDisplayOptions.java 35 private View mCustomView;
52 mCustomView = getLayoutInflater().inflate(R.layout.action_bar_display_options_custom, null);
55 bar.setCustomView(mCustomView,
96 ActionBar.LayoutParams lp = (ActionBar.LayoutParams) mCustomView.getLayoutParams();
110 bar.setCustomView(mCustomView, lp);
  /frameworks/base/core/java/android/webkit/
FindActionModeCallback.java 41 private View mCustomView;
53 mCustomView = LayoutInflater.from(context).inflate(
55 mEditText = (EditText) mCustomView.findViewById(
60 mMatches = (TextView) mCustomView.findViewById(
205 mode.setCustomView(mCustomView);
280 View view = (View) mCustomView.getParent();
282 view = mCustomView;
  /frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
ActionBarContextView.java 45 private View mCustomView;
134 if (mCustomView != null) {
135 removeView(mCustomView);
137 mCustomView = view;
252 mCustomView = null;
330 if (mTitleLayout != null && mCustomView == null) {
346 if (mCustomView != null) {
347 ViewGroup.LayoutParams lp = mCustomView.getLayoutParams();
356 mCustomView.measure(View.MeasureSpec.makeMeasureSpec(customWidth, customWidthMode),
391 if (mTitleLayout != null && mCustomView == null && mTitleLayout.getVisibility() != GONE)
    [all...]
ScrollingTabContainerView.java 329 private View mCustomView;
376 mCustomView = custom;
385 if (mCustomView != null) {
386 removeView(mCustomView);
387 mCustomView = null;
  /development/samples/Support7Demos/src/com/example/android/supportv7/app/
ActionBarDisplayOptions.java 35 private View mCustomView;
53 mCustomView = getLayoutInflater().inflate(R.layout.action_bar_display_options_custom, null);
58 bar.setCustomView(mCustomView, mCustomViewLayoutParams);
117 bar.setCustomView(mCustomView, lp);
  /frameworks/base/core/java/com/android/internal/widget/
ActionBarContextView.java 52 private View mCustomView;
144 if (mCustomView != null) {
145 removeView(mCustomView);
147 mCustomView = view;
281 mCustomView = null;
357 if (mTitleLayout != null && mCustomView == null) {
372 if (mCustomView != null) {
373 ViewGroup.LayoutParams lp = mCustomView.getLayoutParams();
382 mCustomView.measure(MeasureSpec.makeMeasureSpec(customWidth, customWidthMode),
478 if (mTitleLayout != null && mCustomView == null && mTitleLayout.getVisibility() != GONE)
    [all...]
ScrollingTabContainerView.java 367 private View mCustomView;
428 mCustomView = custom;
435 if (mCustomView != null) {
436 removeView(mCustomView);
437 mCustomView = null;
  /packages/apps/Browser/src/com/android/browser/
BaseUi.java 96 private View mCustomView;
192 if (mCustomView != null) {
526 if (mCustomView != null) {
536 mCustomView = view;
546 if (mCustomView == null)
552 mCustomView = null;
560 return mCustomView != null;
572 return mCustomView == null;
773 if (mCustomView != null) {
774 mCustomView.setSystemUiVisibility(View.SYSTEM_UI_FLAG_VISIBLE)
    [all...]
  /frameworks/base/core/java/com/android/internal/app/
ActionBarImpl.java 841 private WeakReference<View> mCustomView;
911 mCustomView = new WeakReference<View>(view);
957 return mCustomView != null ? mCustomView.get() : null;
    [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/app/
ActionBarImplBase.java 615 private View mCustomView;
640 return mCustomView;
645 mCustomView = view;
734 private WeakReference<View> mCustomView;
804 mCustomView = new WeakReference<View>(view);
850 return mCustomView != null ? mCustomView.get() : null;

Completed in 207 milliseconds