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

/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/base/packages/SystemUI/src/com/android/systemui/recent/
H A DChoreographer.java42 RecentsPanelView mRootView; field in class:Choreographer
54 mRootView = root;
118 final Resources res = mRootView.getResources();
122 mRootView.findViewById(R.id.recents_transition_background);
161 mRootView.findViewById(R.id.recents_transition_background);
163 mRootView.requestLayout();
180 mRootView.hideWindow();
/frameworks/base/core/java/android/inputmethodservice/
H A DInputMethodService.java256 View mRootView; field in class:InputMethodService
657 mRootView = mInflater.inflate(
659 mWindow.setContentView(mRootView);
660 mRootView.getViewTreeObserver().addOnComputeInternalInsetsListener(mInsetsComputer);
666 mFullscreenArea = (ViewGroup)mRootView.findViewById(com.android.internal.R.id.fullscreenArea);
668 mExtractFrame = (FrameLayout)mRootView.findViewById(android.R.id.extractArea);
675 mCandidatesFrame = (FrameLayout)mRootView.findViewById(android.R.id.candidatesArea);
676 mInputFrame = (FrameLayout)mRootView.findViewById(android.R.id.inputArea);
688 mRootView.getViewTreeObserver().removeOnComputeInternalInsetsListener(
/frameworks/base/core/java/android/view/
H A DView.java14624 final View v = mAttachInfo.mRootView;
17313 View mRootView; field in class:View.AttachInfo

Completed in 153 milliseconds