Searched refs:mRootView (Results 1 - 25 of 30) sorted by relevance

12

/frameworks/base/tests/ImfTest/src/com/android/imftest/samples/
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 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 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 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 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;
H A DButtonActivity.java33 private View mRootView; field in class:ButtonActivity
72 mRootView = layout;
76 return mRootView;
/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/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));
59 mRootView.addView(mViewHolder.view, mLayoutWidth, mLayoutHeight);
60 mRootView.measure(
63 mRootView.layout(0, 0, mRootView.getMeasuredWidth(), mRootView.getMeasuredHeight());
80 mRootView.dispatchKeyEvent(event);
89 mRootView.dispatchKeyEvent(new KeyEvent(KeyEvent.ACTION_DOWN, keyCode));
91 mRootView
[all...]
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/qs/
H A DQSSecurityFooterTest.java61 private ViewGroup mRootView; field in class:QSSecurityFooterTest
78 mRootView = (ViewGroup) mFooter.getView();
79 mFooterText = (TextView) mRootView.findViewById(R.id.footer_text);
80 mFooterIcon = (TestableImageView) mRootView.findViewById(R.id.footer_icon);
90 assertEquals(View.GONE, mRootView.getVisibility());
102 assertEquals(View.VISIBLE, mRootView.getVisibility());
119 assertEquals(View.VISIBLE, mRootView.getVisibility());
/frameworks/support/v17/leanback/src/android/support/v17/leanback/app/
H A DDetailsFragment.java322 BrowseFrameLayout mRootView; field in class:DetailsFragment
436 mRootView = (BrowseFrameLayout) inflater.inflate(
438 mBackgroundView = mRootView.findViewById(R.id.details_background_view);
449 installTitleView(inflater, mRootView, savedInstanceState);
454 mSceneAfterEntranceTransition = TransitionHelper.createScene(mRootView, new Runnable() {
479 return mRootView;
840 mRootView.setOnChildFocusListener(new BrowseFrameLayout.OnChildFocusListener() {
849 if (child != mRootView.getFocusedChild()) {
864 mRootView.setOnFocusSearchListener(new BrowseFrameLayout.OnFocusSearchListener() {
891 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 DPlaybackOverlayFragment.java112 private View mRootView; field in class:PlaybackOverlayFragment
201 if (mRootView != null) {
202 mRootView.getBackground().setAlpha(alpha);
738 if (mRootView != null) {
745 mRootView.setBackground(new ColorDrawable(color));
801 mRootView = super.onCreateView(inflater, container, savedInstanceState);
805 return mRootView;
810 mRootView = null;
H A DPlaybackOverlaySupportFragment.java115 private View mRootView; field in class:PlaybackOverlaySupportFragment
204 if (mRootView != null) {
205 mRootView.getBackground().setAlpha(alpha);
741 if (mRootView != null) {
748 mRootView.setBackground(new ColorDrawable(color));
804 mRootView = super.onCreateView(inflater, container, savedInstanceState);
808 return mRootView;
813 mRootView = null;
/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/base/packages/SystemUI/src/com/android/systemui/qs/
H A DQSSecurityFooter.java51 private final View mRootView; field in class:QSSecurityFooter
71 mRootView = LayoutInflater.from(context)
73 mRootView.setOnClickListener(this);
74 mFooterText = (TextView) mRootView.findViewById(R.id.footer_text);
75 mFooterIcon = (ImageView) mRootView.findViewById(R.id.footer_icon);
102 return mRootView;
106 return mRootView.getVisibility() != View.GONE;
397 mRootView.setVisibility(mIsVisible ? View.VISIBLE : View.GONE);
/frameworks/base/packages/SystemUI/src/com/android/systemui/fragments/
H A DFragmentHostManager.java50 private final View mRootView; field in class:FragmentHostManager
63 mRootView = rootView;
168 return mRootView.findViewById(id);
/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...]
/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/support/v17/leanback/src/android/support/v17/leanback/widget/picker/
H A DPicker.java60 private ViewGroup mRootView; field in class:Picker
149 mRootView = (ViewGroup) inflater.inflate(R.layout.lb_picker, this, true);
150 mPickerView = (ViewGroup) mRootView.findViewById(R.id.picker);

Completed in 8539 milliseconds

12