HomeSort by relevance Sort by last modified time
    Searched defs:mRootView (Results 1 - 25 of 52) sorted by null

1 2 3

  /frameworks/base/tests/ImfTest/src/com/android/imftest/samples/
BigEditTextActivityNonScrollablePanScan.java 30 private View mRootView;
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;
BigEditTextActivityNonScrollableResize.java 30 private View mRootView;
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;
BigEditTextActivityScrollablePanScan.java 31 private View mRootView;
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;
BigEditTextActivityScrollableResize.java 31 private View mRootView;
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;
BottomEditTextActivityPanScan.java 36 private View mRootView;
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;
BottomEditTextActivityResize.java 36 private View mRootView;
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;
ButtonActivity.java 33 private View mRootView;
72 mRootView = layout;
76 return mRootView;
ManyEditTextActivityNoScrollPanScan.java 41 private View mRootView;
48 mRootView = new LinearLayout(this);
49 ((LinearLayout) mRootView).setOrientation(LinearLayout.VERTICAL);
56 ((LinearLayout) mRootView).addView(editText);
58 setContentView(mRootView);
63 return mRootView;
ManyEditTextActivityScrollPanScan.java 41 private View mRootView;
47 mRootView = new ScrollView(this);
60 ((ScrollView) mRootView).addView(layout);
61 setContentView(mRootView);
66 return mRootView;
ManyEditTextActivityScrollResize.java 34 private View mRootView;
40 mRootView = new ScrollView(this);
53 ((ScrollView) mRootView).addView(layout);
54 setContentView(mRootView);
59 return mRootView;
OneEditTextActivityNotSelected.java 40 private View mRootView;
50 mRootView = new ScrollView(this);
61 ((ScrollView) mRootView).addView(layout);
62 setContentView(mRootView);
66 return mRootView;
OneEditTextActivitySelected.java 39 private View mRootView;
49 mRootView = new ScrollView(this);
56 ((ScrollView) mRootView).addView(layout);
57 setContentView(mRootView);
65 return mRootView;
  /frameworks/base/core/tests/coretests/src/android/widget/focus/
LinearLayoutGridTest.java 34 private ViewGroup mRootView;
42 mRootView = getActivity().getRootView();
49 mRootView,
58 mRootView,
67 mRootView,
76 mRootView,
  /packages/apps/Settings/src/com/android/settings/applications/
AppOpsSummary.java 37 private View mRootView;
97 mRootView = rootView;
AppOpsDetails.java 57 private View mRootView;
63 final View appSnippet = mRootView.findViewById(R.id.app_snippet);
189 mRootView = view;
ProcessStatsMemDetail.java 55 private View mRootView;
81 mRootView = view;
92 mMemStateParent = (ViewGroup)mRootView.findViewById(R.id.mem_state);
93 mMemUseParent = (ViewGroup)mRootView.findViewById(R.id.mem_use);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
QSFooter.java 43 private final View mRootView;
60 mRootView = LayoutInflater.from(context)
62 mRootView.setOnClickListener(this);
63 mFooterText = (TextView) mRootView.findViewById(R.id.footer_text);
64 mFooterIcon = (ImageView) mRootView.findViewById(R.id.footer_icon);
88 return mRootView;
92 return mRootView.getVisibility() != View.GONE;
246 mRootView.setVisibility(mIsVisible ? View.VISIBLE : View.GONE);
  /packages/apps/TvSettings/QuickSettings/src/com/android/tv/quicksettings/
QuickSettings.java 45 private View mRootView;
63 mRootView = getWindow().getDecorView().findViewById(android.R.id.content);
64 mRootView.setTranslationX(mSlidOutTranslationX);
118 mRootView.animate().cancel();
119 mRootView.animate().translationX(0).start();
124 mRootView.animate().cancel();
125 mRootView.animate().translationX(mSlidOutTranslationX).start();