HomeSort by relevance Sort by last modified time
    Searched refs:mRootView (Results 26 - 50 of 56) sorted by null

12 3

  /packages/apps/Contacts/src/com/android/contacts/group/
GroupDetailFragment.java 100 private View mRootView;
153 mRootView = inflater.inflate(R.layout.group_detail_fragment, container, false);
154 mGroupTitle = (TextView) mRootView.findViewById(R.id.group_title);
155 mGroupSize = (TextView) mRootView.findViewById(R.id.group_size);
156 mGroupSourceViewContainer = (ViewGroup) mRootView.findViewById(
158 mEmptyView = mRootView.findViewById(android.R.id.empty);
159 mMemberListView = (ListView) mRootView.findViewById(android.R.id.list);
163 return mRootView;
GroupEditorFragment.java 180 private ViewGroup mRootView;
212 mRootView = (ViewGroup) inflater.inflate(R.layout.group_editor_fragment, container, false);
213 return mRootView;
388 View oldEditorView = mRootView.findViewWithTag(CURRENT_EDITOR_TAG);
390 mRootView.removeView(oldEditorView);
392 editorView = mLayoutInflater.inflate(newGroupEditorId, mRootView, false);
398 editorView = mRootView.findViewWithTag(CURRENT_EDITOR_TAG);
461 mRootView.addView(editorView);
    [all...]
  /packages/apps/Settings/src/com/android/settings/applications/
AppOpsSummary.java 37 private View mRootView;
97 mRootView = rootView;
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);
ManageApplications.java 192 public View mRootView;
243 if (mRootView != null) {
244 return mRootView;
247 mRootView = inflater.inflate(mListType == LIST_TYPE_RUNNING
250 mLoadingContainer = mRootView.findViewById(R.id.loading_container);
252 mListContainer = mRootView.findViewById(R.id.list_container);
282 mRunningProcessesView = (RunningProcessesView)mRootView.findViewById(
288 return mRootView;
292 if (mRootView != null) {
293 ViewGroup group = (ViewGroup)mRootView.getParent()
    [all...]
AppOpsDetails.java 57 private View mRootView;
63 final View appSnippet = mRootView.findViewById(R.id.app_snippet);
189 mRootView = view;
RunningServiceDetails.java 70 View mRootView;
83 View mRootView;
262 detail.mRootView = root;
338 detail.mRootView = root;
424 mAllDetails.removeView(mActiveDetails.get(i).mRootView);
516 mRootView = view;
InstalledAppDetails.java 118 private View mRootView;
465 mRootView = view;
575 final View appSnippet = mRootView.findViewById(R.id.app_snippet);
743 TextView autoLaunchTitleView = (TextView) mRootView.findViewById(R.id.auto_launch_title);
744 TextView autoLaunchView = (TextView) mRootView.findViewById(R.id.auto_launch);
    [all...]
RunningProcessesView.java 96 View mRootView;
188 ai.mRootView = rootView;
491 if (ai.mRootView.getWindowToken() == null) {
  /packages/apps/Settings/src/com/android/settings/fuelgauge/
PowerUsageDetail.java 307 private View mRootView;
342 mRootView = view;
389 final TextView summary = (TextView) mRootView.findViewById(android.R.id.summary);
396 mTitleView = (TextView) mRootView.findViewById(android.R.id.title);
399 final TextView text1 = (TextView)mRootView.findViewById(android.R.id.text1);
402 mTwoButtonsPanel = (ViewGroup)mRootView.findViewById(R.id.two_buttons_panel);
403 mForceStopButton = (Button)mRootView.findViewById(R.id.left_button);
404 mReportButton = (Button)mRootView.findViewById(R.id.right_button);
407 final ProgressBar progress = (ProgressBar) mRootView.findViewById(android.R.id.progress);
410 final ImageView icon = (ImageView) mRootView.findViewById(android.R.id.icon)
    [all...]
  /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();
  /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...]
VideoModule.java 125 private View mRootView;
361 mPreviewSurfaceView = (PreviewSurfaceView) mRootView.findViewById(R.id.preview_surface_view);
383 mRenderOverlay = (RenderOverlay) mRootView.findViewById(R.id.render_overlay);
419 mRootView = root;
440 mActivity.getLayoutInflater().inflate(R.layout.video_module, (ViewGroup) mRootView);
    [all...]
PhotoModule.java 131 private View mRootView;
464 mRootView = parent;
476 mActivity.getLayoutInflater().inflate(R.layout.photo_module, (ViewGroup) mRootView);
500 mCountDownView = (CountDownView) (mRootView.findViewById(R.id.count_down_to_capture));
797 mOnScreenIndicators = mRootView.findViewById(R.id.on_screen_indicators);
    [all...]
  /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/opt/photoviewer/src/com/android/ex/photo/
PhotoViewController.java 144 protected View mRootView;
301 mRootView = findViewById(R.id.photo_activity_root_view);
303 mRootView.setOnSystemUiVisibilityChangeListener(getSystemUiVisibilityChangeListener());
743 Util.announceForAccessibility(mRootView, mAccessibilityManager, announcement);
    [all...]
  /frameworks/base/core/java/android/service/voice/
VoiceInteractionSession.java 74 View mRootView;
456 mRootView.getViewTreeObserver().removeOnComputeInternalInsetsListener(
470 mRootView = mInflater.inflate(
472 mRootView.setSystemUiVisibility(
474 mWindow.setContentView(mRootView);
475 mRootView.getViewTreeObserver().addOnComputeInternalInsetsListener(mInsetsComputer);
477 mContentFrame = (FrameLayout)mRootView.findViewById(android.R.id.content);
  /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),
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/widget/picker/
Picker.java 61 private ViewGroup mRootView;
195 mRootView = (ViewGroup) inflater.inflate(getRootLayoutId(), null);
196 mPickerView = (ViewGroup) mRootView.findViewById(getPickerId());
230 return mRootView;
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
ChangeLayoutRefactoringTest.java 120 CanvasViewInfo rootView = info.mRootView;
RefactoringTest.java 307 testInfo.mRootView = rootView;
325 protected CanvasViewInfo mRootView;
  /frameworks/base/core/java/android/inputmethodservice/
InputMethodService.java 261 View mRootView;
706 mRootView = mInflater.inflate(
708 mRootView.setSystemUiVisibility(
710 mWindow.setContentView(mRootView);
711 mRootView.getViewTreeObserver().addOnComputeInternalInsetsListener(mInsetsComputer);
717 mFullscreenArea = (ViewGroup)mRootView.findViewById(com.android.internal.R.id.fullscreenArea);
719 mExtractFrame = (FrameLayout)mRootView.findViewById(android.R.id.extractArea);
726 mCandidatesFrame = (FrameLayout)mRootView.findViewById(android.R.id.candidatesArea);
727 mInputFrame = (FrameLayout)mRootView.findViewById(android.R.id.inputArea);
739 mRootView.getViewTreeObserver().removeOnComputeInternalInsetsListener
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
MoviePlayer.java 80 private final View mRootView;
122 mRootView = rootView;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
ChangeLayoutRefactoring.java 585 CanvasViewInfo rootView = mRootView;
607 CanvasViewInfo rootView = mRootView;
646 protected CanvasViewInfo mRootView;
650 mRootView = rootView;

Completed in 1613 milliseconds

12 3