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

1 2

  /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;
ManyEditTextActivityScrollResize.java 34 private View mRootView;
40 mRootView = new ScrollView(this);
53 ((ScrollView) mRootView).addView(layout);
54 setContentView(mRootView);
59 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;
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;
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;
ButtonActivity.java 33 private View mRootView;
72 mRootView = layout;
76 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/inputmethod/
UserDictionaryAddWordFragment.java 50 private View mRootView;
61 mRootView = inflater.inflate(R.layout.user_dictionary_add_word_fullscreen, null);
64 mContents = new UserDictionaryAddWordContents(mRootView, getArguments());
66 return mRootView;
106 (Spinner)mRootView.findViewById(R.id.user_dictionary_add_locale);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/userdictionary/
UserDictionaryAddWordFragment.java 56 private View mRootView;
67 mRootView = inflater.inflate(R.layout.user_dictionary_add_word_fullscreen, null);
70 mContents = new UserDictionaryAddWordContents(mRootView, getArguments());
72 return mRootView;
120 (Spinner)mRootView.findViewById(R.id.user_dictionary_add_locale);
  /packages/apps/Contacts/src/com/android/contacts/group/
GroupBrowseListFragment.java 82 private View mRootView;
111 mRootView = inflater.inflate(R.layout.group_browse_list_fragment, null);
112 mEmptyView = (TextView)mRootView.findViewById(R.id.empty);
118 mListView = (AutoScrollListView) mRootView.findViewById(R.id.list);
133 mAddAccountsView = mRootView.findViewById(R.id.add_accounts);
134 mAddAccountButton = mRootView.findViewById(R.id.add_account_button);
147 return mRootView;
GroupDetailFragment.java 98 private View mRootView;
151 mRootView = inflater.inflate(R.layout.group_detail_fragment, container, false);
152 mGroupTitle = (TextView) mRootView.findViewById(R.id.group_title);
153 mGroupSize = (TextView) mRootView.findViewById(R.id.group_size);
154 mGroupSourceViewContainer = (ViewGroup) mRootView.findViewById(
156 mEmptyView = mRootView.findViewById(android.R.id.empty);
157 mMemberListView = (ListView) mRootView.findViewById(android.R.id.list);
161 return mRootView;
  /packages/apps/LegacyCamera/src/com/android/camera/ui/
SharePopup.java 65 private View mRootView;
145 mRootView = sharePopup.findViewById(R.id.root);
146 LayoutParams params = mRootView.getLayoutParams();
149 mRootView.setLayoutParams(params);
166 int hPaddingRootView = mRootView.getPaddingLeft() + mRootView.getPaddingRight();
167 int vPaddingRootView = mRootView.getPaddingTop() + mRootView.getPaddingBottom();
  /packages/apps/Settings/src/com/android/settings/fuelgauge/
PowerUsageDetail.java 118 private View mRootView;
151 mRootView = view;
197 final TextView summary = (TextView) mRootView.findViewById(android.R.id.summary);
204 mTitleView = (TextView) mRootView.findViewById(android.R.id.title);
207 final TextView text1 = (TextView)mRootView.findViewById(android.R.id.text1);
210 mTwoButtonsPanel = (ViewGroup)mRootView.findViewById(R.id.two_buttons_panel);
211 mForceStopButton = (Button)mRootView.findViewById(R.id.left_button);
212 mReportButton = (Button)mRootView.findViewById(R.id.right_button);
215 final ProgressBar progress = (ProgressBar) mRootView.findViewById(android.R.id.progress);
218 final ImageView icon = (ImageView) mRootView.findViewById(android.R.id.icon)
    [all...]
  /packages/apps/Gallery2/src/com/android/camera/
PhotoUI.java 66 private View mRootView;
121 mRootView = parent;
124 (ViewGroup) mRootView, true);
125 mRenderOverlay = (RenderOverlay) mRootView.findViewById(R.id.render_overlay);
128 mCountDownView = (CountDownView) (mRootView.findViewById(R.id.count_down_to_capture));
132 ViewStub faceViewStub = (ViewStub) mRootView
136 mFaceView = (FaceView) mRootView.findViewById(R.id.face_view);
143 return mRootView;
259 mRootView.addOnLayoutChangeListener(mLayoutListener);
271 mRootView.addOnLayoutChangeListener(mLayoutListener)
    [all...]
VideoUI.java 52 private View mRootView;
84 mRootView = parent;
85 mActivity.getLayoutInflater().inflate(R.layout.video_module, (ViewGroup) mRootView, true);
86 mPreviewSurfaceView = (PreviewSurfaceView) mRootView
202 mRenderOverlay = (RenderOverlay) mRootView.findViewById(R.id.render_overlay);
246 mPreviewFrameLayout = (PreviewFrameLayout) mRootView.findViewById(R.id.frame);
248 mReviewImage = (ImageView) mRootView.findViewById(R.id.review_image);
255 mRecordingTimeView = (TextView) mRootView.findViewById(R.id.recording_time);
256 mRecordingTimeRect = (RotateLayout) mRootView.findViewById(R.id.recording_time_rect);
257 mTimeLapseLabel = mRootView.findViewById(R.id.time_lapse_label)
    [all...]
PanoramaModule.java 175 private View mRootView;
230 mRootView = parent;
660 mPanoProgressBar = (PanoProgressBar) mRootView.findViewById(R.id.pano_pan_progress_bar);
674 mLeftIndicator = mRootView.findViewById(R.id.pano_pan_left_indicator);
675 mRightIndicator = mRootView.findViewById(R.id.pano_pan_right_indicator);
678 mTooFastPrompt = (TextView) mRootView.findViewById(R.id.pano_capture_too_fast_textview);
680 mPreviewArea = (LayoutNotifyView) mRootView.findViewById(R.id.pano_preview_area);
683 mSavingProgressBar = (PanoProgressBar) mRootView.findViewById(R.id.pano_saving_progress_bar);
689 mCaptureIndicator = mRootView.findViewById(R.id.pano_capture_indicator);
691 mReviewLayout = mRootView.findViewById(R.id.pano_review_layout)
    [all...]
  /packages/apps/Settings/src/com/android/settings/applications/
AppOpsSummary.java 38 private View mRootView;
97 mRootView = rootView;
ManageApplications.java 190 public View mRootView;
241 if (mRootView != null) {
242 return mRootView;
246 mRootView = inflater.inflate(mListType == LIST_TYPE_RUNNING
249 mLoadingContainer = mRootView.findViewById(R.id.loading_container);
251 mListContainer = mRootView.findViewById(R.id.list_container);
281 mRunningProcessesView = (RunningProcessesView)mRootView.findViewById(
287 return mRootView;
291 if (mRootView != null) {
292 ViewGroup group = (ViewGroup)mRootView.getParent()
    [all...]
  /packages/apps/Camera/src/com/android/camera/
PanoramaModule.java 175 private View mRootView;
228 mRootView = parent;
661 mPanoProgressBar = (PanoProgressBar) mRootView.findViewById(R.id.pano_pan_progress_bar);
675 mLeftIndicator = mRootView.findViewById(R.id.pano_pan_left_indicator);
676 mRightIndicator = mRootView.findViewById(R.id.pano_pan_right_indicator);
679 mTooFastPrompt = (TextView) mRootView.findViewById(R.id.pano_capture_too_fast_textview);
681 mPreviewArea = (LayoutNotifyView) mRootView.findViewById(R.id.pano_preview_area);
684 mSavingProgressBar = (PanoProgressBar) mRootView.findViewById(R.id.pano_saving_progress_bar);
690 mCaptureIndicator = mRootView.findViewById(R.id.pano_capture_indicator);
692 mReviewLayout = mRootView.findViewById(R.id.pano_review_layout)
    [all...]

Completed in 2087 milliseconds

1 2