HomeSort by relevance Sort by last modified time
    Searched refs:mRootView (Results 1 - 25 of 36) 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/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);
160 return mRootView;
GroupEditorFragment.java 178 private ViewGroup mRootView;
210 mRootView = (ViewGroup) inflater.inflate(R.layout.group_editor_fragment, container, false);
211 return mRootView;
386 View oldEditorView = mRootView.findViewWithTag(CURRENT_EDITOR_TAG);
388 mRootView.removeView(oldEditorView);
390 editorView = mLayoutInflater.inflate(newGroupEditorId, mRootView, false);
396 editorView = mRootView.findViewWithTag(CURRENT_EDITOR_TAG);
459 mRootView.addView(editorView);
    [all...]
  /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 116 private View mRootView;
145 View view = mRootView = inflater.inflate(R.layout.power_usage_details, null);
191 final TextView summary = (TextView) mRootView.findViewById(android.R.id.summary);
198 mTitleView = (TextView) mRootView.findViewById(android.R.id.title);
201 final TextView text1 = (TextView)mRootView.findViewById(android.R.id.text1);
204 mTwoButtonsPanel = (ViewGroup)mRootView.findViewById(R.id.two_buttons_panel);
205 mForceStopButton = (Button)mRootView.findViewById(R.id.left_button);
206 mReportButton = (Button)mRootView.findViewById(R.id.right_button);
209 final ProgressBar progress = (ProgressBar) mRootView.findViewById(android.R.id.progress);
212 final ImageView icon = (ImageView) mRootView.findViewById(android.R.id.icon)
    [all...]
  /packages/apps/Camera/src/com/android/camera/
PanoramaModule.java 176 private View mRootView;
227 mRootView = (ViewGroup) parent;
620 mPanoProgressBar = (PanoProgressBar) mRootView.findViewById(R.id.pano_pan_progress_bar);
634 mLeftIndicator = mRootView.findViewById(R.id.pano_pan_left_indicator);
635 mRightIndicator = mRootView.findViewById(R.id.pano_pan_right_indicator);
638 mTooFastPrompt = (TextView) mRootView.findViewById(R.id.pano_capture_too_fast_textview);
640 mPreviewArea = (LayoutNotifyView) mRootView.findViewById(R.id.pano_preview_area);
643 mSavingProgressBar = (PanoProgressBar) mRootView.findViewById(R.id.pano_saving_progress_bar);
649 mCaptureIndicator = mRootView.findViewById(R.id.pano_capture_indicator);
651 mReviewLayout = mRootView.findViewById(R.id.pano_review_layout)
    [all...]
VideoModule.java 123 private View mRootView;
369 mPreviewSurfaceView = (PreviewSurfaceView) mRootView.findViewById(R.id.preview_surface_view);
391 mRenderOverlay = (RenderOverlay) mRootView.findViewById(R.id.render_overlay);
424 mRootView = root;
445 mActivity.getLayoutInflater().inflate(R.layout.video_module, (ViewGroup) mRootView);
    [all...]
  /packages/apps/Settings/src/com/android/settings/applications/
ManageApplications.java 188 public View mRootView;
238 if (mRootView != null) {
239 return mRootView;
243 mRootView = inflater.inflate(mListType == LIST_TYPE_RUNNING
246 mLoadingContainer = mRootView.findViewById(R.id.loading_container);
248 mListContainer = mRootView.findViewById(R.id.list_container);
278 mRunningProcessesView = (RunningProcessesView)mRootView.findViewById(
284 return mRootView;
288 if (mRootView != null) {
289 ViewGroup group = (ViewGroup)mRootView.getParent()
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
ChangeLayoutRefactoringTest.java 115 CanvasViewInfo rootView = info.mRootView;
  /frameworks/base/core/java/android/inputmethodservice/
InputMethodService.java 258 View mRootView;
682 mRootView = mInflater.inflate(
684 mWindow.setContentView(mRootView);
685 mRootView.getViewTreeObserver().addOnComputeInternalInsetsListener(mInsetsComputer);
691 mFullscreenArea = (ViewGroup)mRootView.findViewById(com.android.internal.R.id.fullscreenArea);
693 mExtractFrame = (FrameLayout)mRootView.findViewById(android.R.id.extractArea);
700 mCandidatesFrame = (FrameLayout)mRootView.findViewById(android.R.id.candidatesArea);
701 mInputFrame = (FrameLayout)mRootView.findViewById(android.R.id.inputArea);
713 mRootView.getViewTreeObserver().removeOnComputeInternalInsetsListener(
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
MoviePlayer.java 77 private final View mRootView;
118 mRootView = rootView;
194 mRootView.setBackgroundColor(Color.BLACK);

Completed in 227 milliseconds

1 2