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

  /development/samples/Support7Demos/src/com/example/android/supportv7/app/
ToolbarDisplayOptions.java 37 private View mCustomView;
57 mCustomView = getLayoutInflater().inflate(R.layout.action_bar_display_options_custom, null);
110 bar.setCustomView(mCustomView, lp);
ActionBarDisplayOptions.java 39 private View mCustomView;
57 mCustomView = getLayoutInflater().inflate(R.layout.action_bar_display_options_custom, null);
62 bar.setCustomView(mCustomView, mCustomViewLayoutParams);
143 bar.setCustomView(mCustomView, lp);
  /development/samples/ApiDemos/src/com/example/android/apis/app/
ActionBarDisplayOptions.java 39 private View mCustomView;
57 mCustomView = getLayoutInflater().inflate(R.layout.action_bar_display_options_custom, null);
60 bar.setCustomView(mCustomView,
102 ActionBar.LayoutParams lp = (ActionBar.LayoutParams) mCustomView.getLayoutParams();
116 bar.setCustomView(mCustomView, lp);
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
CustomViewToolbar.java 52 protected View mCustomView;
78 mCustomView = findViewById(R.id.actionbar_custom_view);
141 mCustomView.getLocationInWindow(coords);
144 newWidth = coords[0] + mCustomView.getWidth() - xEnd;
150 if (mCustomView.getWidth() != newWidth) {
151 final ViewGroup.LayoutParams params = mCustomView.getLayoutParams();
153 mCustomView.setLayoutParams(params);
  /frameworks/base/core/java/com/android/internal/view/
StandaloneActionMode.java 37 private WeakReference<View> mCustomView;
89 mCustomView = view != null ? new WeakReference<View>(view) : null;
125 return mCustomView != null ? mCustomView.get() : null;
  /frameworks/support/v7/appcompat/src/android/support/v7/internal/view/
StandaloneActionMode.java 40 private WeakReference<View> mCustomView;
92 mCustomView = view != null ? new WeakReference<View>(view) : null;
128 return mCustomView != null ? mCustomView.get() : null;
  /frameworks/base/core/java/android/webkit/
FindActionModeCallback.java 43 private View mCustomView;
55 mCustomView = LayoutInflater.from(context).inflate(
57 mEditText = (EditText) mCustomView.findViewById(
62 mMatches = (TextView) mCustomView.findViewById(
207 mode.setCustomView(mCustomView);
282 View view = (View) mCustomView.getParent();
284 view = mCustomView;
  /packages/apps/Messaging/src/com/android/messaging/ui/
BugleActionBarActivity.java 271 private View mCustomView;
300 mCustomView = view;
333 return mCustomView;
  /frameworks/base/core/java/com/android/internal/widget/
ActionBarContextView.java 47 private View mCustomView;
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 == null && mTitleLayout.getVisibility() != GONE)
    [all...]
ScrollingTabContainerView.java 367 private View mCustomView;
420 mCustomView = custom;
427 if (mCustomView != null) {
428 removeView(mCustomView);
429 mCustomView = null;
ToolbarWidgetWrapper.java 71 private View mCustomView;
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;
  /frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
ActionBarContextView.java 46 private View mCustomView;
99 if (mCustomView != null) {
100 removeView(mCustomView);
102 mCustomView = view;
198 mCustomView = null;
273 if (mTitleLayout != null && mCustomView == null) {
288 if (mCustomView != null) {
289 ViewGroup.LayoutParams lp = mCustomView.getLayoutParams();
298 mCustomView.measure(MeasureSpec.makeMeasureSpec(customWidth, customWidthMode),
334 if (mTitleLayout != null && mCustomView == null && mTitleLayout.getVisibility() != GONE)
    [all...]
ScrollingTabContainerView.java 387 private View mCustomView;
458 mCustomView = custom;
465 if (mCustomView != null) {
466 removeView(mCustomView);
467 mCustomView = null;
ToolbarWidgetWrapper.java 71 private View mCustomView;
436 if ((changed & ActionBar.DISPLAY_SHOW_CUSTOM) != 0 && mCustomView != null) {
438 mToolbar.addView(mCustomView);
440 mToolbar.removeView(mCustomView);
566 if (mCustomView != null && (mDisplayOpts & ActionBar.DISPLAY_SHOW_CUSTOM) != 0) {
567 mToolbar.removeView(mCustomView);
569 mCustomView = view;
571 mToolbar.addView(mCustomView);
577 return mCustomView;
  /frameworks/support/design/src/android/support/design/widget/
TabLayout.java 904 private View mCustomView;
    [all...]
  /packages/apps/Browser/src/com/android/browser/
BaseUi.java 95 private View mCustomView;
191 if (mCustomView != null) {
525 if (mCustomView != null) {
535 mCustomView = view;
545 if (mCustomView == null)
551 mCustomView = null;
559 return mCustomView != null;
571 return mCustomView == null;
772 if (mCustomView != null) {
773 mCustomView.setSystemUiVisibility(View.SYSTEM_UI_FLAG_VISIBLE)
    [all...]
  /frameworks/base/core/java/com/android/internal/app/
WindowDecorActionBar.java 961 private WeakReference<View> mCustomView;
    [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/internal/app/
WindowDecorActionBar.java 935 private WeakReference<View> mCustomView;
    [all...]
  /prebuilts/sdk/current/support/design/libs/
android-support-design.jar 
  /prebuilts/sdk/current/support/v7/appcompat/libs/
android-support-v7-appcompat.jar 

Completed in 396 milliseconds