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();
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
ConversationOverlayItem.java 42 protected View mRootView;
196 return mRootView;
  /packages/apps/Settings/src/com/android/settings/inputmethod/
UserDictionaryAddWordFragment.java 50 private View mRootView;
65 mRootView = inflater.inflate(R.layout.user_dictionary_add_word_fullscreen, null);
70 mContents = new UserDictionaryAddWordContents(mRootView, getArguments());
77 mContents = new UserDictionaryAddWordContents(mRootView,
82 return mRootView;
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/userdictionary/
UserDictionaryAddWordFragment.java 56 private View mRootView;
71 mRootView = inflater.inflate(R.layout.user_dictionary_add_word_fullscreen, null);
76 mContents = new UserDictionaryAddWordContents(mRootView, getArguments());
83 mContents = new UserDictionaryAddWordContents(mRootView,
88 return mRootView;
136 (Spinner)mRootView.findViewById(R.id.user_dictionary_add_locale);
  /external/chromium_org/third_party/libaddressinput/src/java/src/com/android/i18n/addressinput/
AddressWidget.java 56 private ViewGroup mRootView;
408 if (mRootView == null) {
411 int childCount = mRootView.getChildCount();
414 mRootView.removeAllViews();
418 mRootView.removeViews(2, mRootView.getChildCount() - 2);
426 createView(mRootView, mInputWidgets.get(field), "", mFormOptions.isReadonly(field));
620 mRootView = rootView;
632 createView(mRootView, mInputWidgets.get(AddressField.COUNTRY),
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/app/
PlaybackOverlayFragment.java 100 private View mRootView;
180 if (mRootView != null) {
181 mRootView.getBackground().setAlpha(alpha);
633 if (mRootView != null) {
640 mRootView.setBackground(new ColorDrawable(color));
696 mRootView = super.onCreateView(inflater, container, savedInstanceState);
700 return mRootView;
705 mRootView = null;
PlaybackOverlaySupportFragment.java 102 private View mRootView;
182 if (mRootView != null) {
183 mRootView.getBackground().setAlpha(alpha);
635 if (mRootView != null) {
642 mRootView.setBackground(new ColorDrawable(color));
698 mRootView = super.onCreateView(inflater, container, savedInstanceState);
702 return mRootView;
707 mRootView = null;
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
SearchOrbView.java 42 private View mRootView;
163 mRootView = inflater.inflate(getLayoutResourceId(), this, true);
164 mSearchOrbView = mRootView.findViewById(R.id.search_orb);
165 mIcon = (ImageView) mRootView.findViewById(R.id.icon);
246 mRootView.animate().scaleX(zoom).scaleY(zoom).setDuration(mScaleDurationMs).start();

Completed in 1753 milliseconds

1 2 3