Searched defs:mRootView (Results 1 - 25 of 27) sorted by relevance

12

/frameworks/base/core/tests/coretests/src/android/widget/focus/
H A DLinearLayoutGridTest.java34 private ViewGroup mRootView; field in class:LinearLayoutGridTest
42 mRootView = getActivity().getRootView();
49 mRootView,
58 mRootView,
67 mRootView,
76 mRootView,
/frameworks/base/tests/ImfTest/src/com/android/imftest/samples/
H A DManyEditTextActivityNoScrollPanScan.java41 private View mRootView; field in class:ManyEditTextActivityNoScrollPanScan
48 mRootView = new LinearLayout(this);
49 ((LinearLayout) mRootView).setOrientation(LinearLayout.VERTICAL);
56 ((LinearLayout) mRootView).addView(editText);
58 setContentView(mRootView);
63 return mRootView;
H A DManyEditTextActivityScrollPanScan.java41 private View mRootView; field in class:ManyEditTextActivityScrollPanScan
47 mRootView = new ScrollView(this);
60 ((ScrollView) mRootView).addView(layout);
61 setContentView(mRootView);
66 return mRootView;
H A DManyEditTextActivityScrollResize.java34 private View mRootView; field in class:ManyEditTextActivityScrollResize
40 mRootView = new ScrollView(this);
53 ((ScrollView) mRootView).addView(layout);
54 setContentView(mRootView);
59 return mRootView;
H A DBigEditTextActivityNonScrollablePanScan.java30 private View mRootView; field in class:BigEditTextActivityNonScrollablePanScan
39 mRootView = new LinearLayout(this);
40 ((LinearLayout) mRootView).setOrientation(LinearLayout.VERTICAL);
41 mRootView.setLayoutParams(new ViewGroup.LayoutParams(
46 R.layout.full_screen_edit_text, ((LinearLayout) mRootView), false);
48 ((LinearLayout) mRootView).addView(view);
52 setContentView(mRootView);
56 return mRootView;
H A DBigEditTextActivityNonScrollableResize.java30 private View mRootView; field in class:BigEditTextActivityNonScrollableResize
39 mRootView = new LinearLayout(this);
40 ((LinearLayout) mRootView).setOrientation(LinearLayout.VERTICAL);
41 mRootView.setLayoutParams(new ViewGroup.LayoutParams(
46 R.layout.full_screen_edit_text, ((LinearLayout) mRootView), false);
48 ((LinearLayout) mRootView).addView(view);
52 setContentView(mRootView);
56 return mRootView;
H A DBigEditTextActivityScrollablePanScan.java31 private View mRootView; field in class:BigEditTextActivityScrollablePanScan
41 mRootView = new ScrollView(this);
42 ((ScrollView) mRootView).setFillViewport(true);
43 mRootView.setLayoutParams(new ViewGroup.LayoutParams(
54 R.layout.full_screen_edit_text, ((ScrollView) mRootView), false);
58 ((ScrollView) mRootView).addView(mLayout);
61 setContentView(mRootView);
65 return mRootView;
H A DBigEditTextActivityScrollableResize.java31 private View mRootView; field in class:BigEditTextActivityScrollableResize
41 mRootView = new ScrollView(this);
42 ((ScrollView) mRootView).setFillViewport(true);
43 mRootView.setLayoutParams(new ViewGroup.LayoutParams(
54 R.layout.full_screen_edit_text, ((ScrollView) mRootView), false);
58 ((ScrollView) mRootView).addView(mLayout);
61 setContentView(mRootView);
65 return mRootView;
H A DBottomEditTextActivityPanScan.java36 private View mRootView; field in class:BottomEditTextActivityPanScan
44 mRootView = new LinearLayout(this);
45 ((LinearLayout) mRootView).setOrientation(LinearLayout.VERTICAL);
47 View view = getLayoutInflater().inflate(R.layout.one_edit_text_activity, ((LinearLayout) mRootView), false);
49 ((LinearLayout) mRootView).addView(view);
51 setContentView(mRootView);
56 return mRootView;
H A DBottomEditTextActivityResize.java36 private View mRootView; field in class:BottomEditTextActivityResize
44 mRootView = new LinearLayout(this);
45 ((LinearLayout) mRootView).setOrientation(LinearLayout.VERTICAL);
47 View view = getLayoutInflater().inflate(R.layout.one_edit_text_activity, ((LinearLayout) mRootView), false);
49 ((LinearLayout) mRootView).addView(view);
51 setContentView(mRootView);
56 return mRootView;
H A DButtonActivity.java33 private View mRootView; field in class:ButtonActivity
72 mRootView = layout;
76 return mRootView;
H A DOneEditTextActivityNotSelected.java40 private View mRootView; field in class:OneEditTextActivityNotSelected
50 mRootView = new ScrollView(this);
61 ((ScrollView) mRootView).addView(layout);
62 setContentView(mRootView);
66 return mRootView;
H A DOneEditTextActivitySelected.java39 private View mRootView; field in class:OneEditTextActivitySelected
49 mRootView = new ScrollView(this);
56 ((ScrollView) mRootView).addView(layout);
57 setContentView(mRootView);
65 return mRootView;
/frameworks/support/v17/leanback/tests/java/android/support/v17/leanback/widget/
H A DPlaybackGlueHostImplWithViewHolder.java33 protected ViewGroup mRootView; field in class:PlaybackGlueHostImplWithViewHolder
58 mPlaybackRowPresenter.onCreateViewHolder(mRootView = new FrameLayout(mContext));
61 mRootView.addView(mViewHolder.view, mLayoutWidth, mLayoutHeight);
62 mRootView.measure(
65 mRootView.layout(0, 0, mRootView.getMeasuredWidth(), mRootView.getMeasuredHeight());
81 mRootView.dispatchKeyEvent(event);
90 mRootView.dispatchKeyEvent(new KeyEvent(KeyEvent.ACTION_DOWN, keyCode));
92 mRootView
[all...]
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/qs/
H A DQSSecurityFooterTest.java67 private ViewGroup mRootView; field in class:QSSecurityFooterTest
87 mRootView = (ViewGroup) mFooter.getView();
88 mFooterText = (TextView) mRootView.findViewById(R.id.footer_text);
89 mFooterIcon = (TestableImageView) mRootView.findViewById(R.id.footer_icon);
99 assertEquals(View.GONE, mRootView.getVisibility());
111 assertEquals(View.VISIBLE, mRootView.getVisibility());
128 assertEquals(View.VISIBLE, mRootView.getVisibility());
146 assertEquals(View.GONE, mRootView.getVisibility());
/frameworks/base/packages/SystemUI/src/com/android/systemui/fragments/
H A DFragmentHostManager.java51 private final View mRootView; field in class:FragmentHostManager
64 mRootView = rootView;
169 return mRootView.findViewById(id);
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
H A DQSSecurityFooter.java55 private final View mRootView; field in class:QSSecurityFooter
77 mRootView = LayoutInflater.from(context)
79 mRootView.setOnClickListener(this);
80 mFooterText = (TextView) mRootView.findViewById(R.id.footer_text);
81 mFooterIcon = (ImageView) mRootView.findViewById(R.id.footer_icon);
109 return mRootView;
113 return mRootView.getVisibility() != View.GONE;
444 mRootView.setVisibility(mIsVisible ? View.VISIBLE : View.GONE);
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DSearchOrbView.java43 private View mRootView; field in class:SearchOrbView
169 mRootView = inflater.inflate(getLayoutResourceId(), this, true);
170 mSearchOrbView = mRootView.findViewById(R.id.search_orb);
171 mIcon = (ImageView) mRootView.findViewById(R.id.icon);
252 mRootView.animate().scaleX(zoom).scaleY(zoom).setDuration(mScaleDurationMs).start();
/frameworks/support/v17/leanback/src/android/support/v17/leanback/app/
H A DDetailsFragment.java328 BrowseFrameLayout mRootView; field in class:DetailsFragment
442 mRootView = (BrowseFrameLayout) inflater.inflate(
444 mBackgroundView = mRootView.findViewById(R.id.details_background_view);
455 installTitleView(inflater, mRootView, savedInstanceState);
460 mSceneAfterEntranceTransition = TransitionHelper.createScene(mRootView, new Runnable() {
485 return mRootView;
846 mRootView.setOnChildFocusListener(new BrowseFrameLayout.OnChildFocusListener() {
855 if (child != mRootView.getFocusedChild()) {
870 mRootView.setOnFocusSearchListener(new BrowseFrameLayout.OnFocusSearchListener() {
897 mRootView
[all...]
H A DDetailsSupportFragment.java325 BrowseFrameLayout mRootView; field in class:DetailsSupportFragment
439 mRootView = (BrowseFrameLayout) inflater.inflate(
441 mBackgroundView = mRootView.findViewById(R.id.details_background_view);
452 installTitleView(inflater, mRootView, savedInstanceState);
457 mSceneAfterEntranceTransition = TransitionHelper.createScene(mRootView, new Runnable() {
482 return mRootView;
843 mRootView.setOnChildFocusListener(new BrowseFrameLayout.OnChildFocusListener() {
852 if (child != mRootView.getFocusedChild()) {
867 mRootView.setOnFocusSearchListener(new BrowseFrameLayout.OnFocusSearchListener() {
894 mRootView
[all...]
H A DPlaybackFragment.java203 View mRootView; field in class:PlaybackFragment
856 mRootView = inflater.inflate(R.layout.lb_playback_fragment, container, false);
857 mBackgroundView = mRootView.findViewById(R.id.playback_fragment_background);
879 progressBarManager.setRootView((ViewGroup) mRootView);
881 return mRootView;
950 mRootView = null;
H A DPlaybackSupportFragment.java200 View mRootView; field in class:PlaybackSupportFragment
853 mRootView = inflater.inflate(R.layout.lb_playback_fragment, container, false);
854 mBackgroundView = mRootView.findViewById(R.id.playback_fragment_background);
876 progressBarManager.setRootView((ViewGroup) mRootView);
878 return mRootView;
947 mRootView = null;
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/picker/
H A DPicker.java62 private ViewGroup mRootView; field in class:Picker
180 mRootView = (ViewGroup) inflater.inflate(R.layout.lb_picker, this, true);
181 mPickerView = (ViewGroup) mRootView.findViewById(R.id.picker);
/frameworks/base/core/java/android/service/voice/
H A DVoiceInteractionSession.java134 View mRootView; field in class:VoiceInteractionSession
1020 mRootView.invalidate();
1021 mRootView.getViewTreeObserver().addOnPreDrawListener(
1025 mRootView.getViewTreeObserver().removeOnPreDrawListener(this);
1059 mRootView.getViewTreeObserver().removeOnComputeInternalInsetsListener(
1090 mRootView = mInflater.inflate(
1092 mRootView.setSystemUiVisibility(
1095 mWindow.setContentView(mRootView);
1096 mRootView.getViewTreeObserver().addOnComputeInternalInsetsListener(mInsetsComputer);
1098 mContentFrame = (FrameLayout)mRootView
[all...]
/frameworks/opt/photoviewer/src/com/android/ex/photo/
H A DPhotoViewController.java146 protected View mRootView; field in class:PhotoViewController
313 mRootView = findViewById(getRootViewId());
315 mRootView.setOnSystemUiVisibilityChangeListener(getSystemUiVisibilityChangeListener());
815 Util.announceForAccessibility(mRootView, mAccessibilityManager, announcement);
988 final int totalWidth = mRootView.getMeasuredWidth();
989 final int totalHeight = mRootView.getMeasuredHeight();
1085 final int totalWidth = mRootView.getMeasuredWidth();
1086 final int totalHeight = mRootView.getMeasuredHeight();
1208 int totalWidth = mRootView.getMeasuredWidth();
1213 final View base = mRootView;
[all...]

Completed in 486 milliseconds

12