Home
last modified time | relevance | path

Searched refs:mRootView (Results 1 – 25 of 27) sorted by relevance

12

/packages/apps/Camera2/src/com/android/camera/
DVideoUI.java49 private final View mRootView; field in VideoUI
101 mRootView = parent; in VideoUI()
102 ViewGroup moduleRoot = (ViewGroup) mRootView.findViewById(R.id.module_layout); in VideoUI()
106 mPreviewOverlay = (PreviewOverlay) mRootView.findViewById(R.id.preview_overlay); in VideoUI()
110 mFocusUI = (FocusOverlay) mRootView.findViewById(R.id.focus_overlay); in VideoUI()
111 mVideoHints = (VideoRecordingHints) mRootView.findViewById(R.id.video_shooting_hints); in VideoUI()
160 mReviewImage = (ImageView) mRootView.findViewById(R.id.review_image); in initializeMiscControls()
161 mRecordingTimeView = (TextView) mRootView.findViewById(R.id.recording_time); in initializeMiscControls()
162 mRecordingTimeRect = (RotateLayout) mRootView.findViewById(R.id.recording_time_rect); in initializeMiscControls()
165 mLabelsLinearLayout = (LinearLayout) mRootView.findViewById(R.id.labels); in initializeMiscControls()
[all …]
DPhotoUI.java65 private final View mRootView; field in PhotoUI
229 mRootView = parent; in PhotoUI()
231 ViewGroup moduleRoot = (ViewGroup) mRootView.findViewById(R.id.module_layout); in PhotoUI()
235 mFocusUI = (FocusUI) mRootView.findViewById(R.id.focus_overlay); in PhotoUI()
236 mPreviewOverlay = (PreviewOverlay) mRootView.findViewById(R.id.preview_overlay); in PhotoUI()
237 mCountdownView = (CountDownView) mRootView.findViewById(R.id.count_down_view); in PhotoUI()
240 mFaceView = (FaceView) mRootView.findViewById(R.id.face_view); in PhotoUI()
251 mIntentReviewImageView = (ImageView) mRootView.findViewById(R.id.intent_review_imageview); in initIntentReviewImageView()
324 mRootView.post(mRunnableForNextFrame); in onSurfaceTextureUpdated()
330 return mRootView; in getRootView()
DCaptureModuleUI.java47 private final View mRootView; field in CaptureModuleUI
130 mRootView = parent; in CaptureModuleUI()
133 ViewGroup moduleRoot = (ViewGroup) mRootView.findViewById(R.id.module_layout); in CaptureModuleUI()
137 mPreviewView = (TextureView) mRootView.findViewById(R.id.preview_content); in CaptureModuleUI()
139 mPreviewOverlay = (PreviewOverlay) mRootView.findViewById(R.id.preview_overlay); in CaptureModuleUI()
140 mProgressOverlay = (ProgressOverlay) mRootView.findViewById(R.id.progress_overlay); in CaptureModuleUI()
142 mFocusUI = (FocusOverlayManager.FocusUI) mRootView.findViewById(R.id.focus_overlay); in CaptureModuleUI()
143 mCountdownView = (CountDownView) mRootView.findViewById(R.id.count_down_view); in CaptureModuleUI()
/packages/apps/Settings/src/com/android/settings/applications/
DProcessStatsDetail.java68 private View mRootView; field in ProcessStatsDetail
95 mRootView = view; in onCreateView()
118 final TextView summary = (TextView) mRootView.findViewById(android.R.id.summary); in createDetails()
121 mTitleView = (TextView) mRootView.findViewById(android.R.id.title); in createDetails()
123 final TextView text1 = (TextView)mRootView.findViewById(android.R.id.text1); in createDetails()
125 final ProgressBar progress = (ProgressBar) mRootView.findViewById(android.R.id.progress); in createDetails()
127 final ImageView icon = (ImageView) mRootView.findViewById(android.R.id.icon); in createDetails()
132 mTwoButtonsPanel = (ViewGroup)mRootView.findViewById(R.id.two_buttons_panel); in createDetails()
133 mForceStopButton = (Button)mRootView.findViewById(R.id.right_button); in createDetails()
134 mReportButton = (Button)mRootView.findViewById(R.id.left_button); in createDetails()
[all …]
DManageApplications.java192 public View mRootView; field in ManageApplications.TabInfo
243 if (mRootView != null) { in build()
244 return mRootView; in build()
247 mRootView = inflater.inflate(mListType == LIST_TYPE_RUNNING in build()
250 mLoadingContainer = mRootView.findViewById(R.id.loading_container); in build()
252 mListContainer = mRootView.findViewById(R.id.list_container); in build()
282 mRunningProcessesView = (RunningProcessesView)mRootView.findViewById( in build()
288 return mRootView; in build()
292 if (mRootView != null) { in detachView()
293 ViewGroup group = (ViewGroup)mRootView.getParent(); in detachView()
[all …]
DRunningServiceDetails.java70 View mRootView; field in RunningServiceDetails
83 View mRootView; field in RunningServiceDetails.ActiveDetail
262 detail.mRootView = root; in addServiceDetailsView()
338 detail.mRootView = root; in addProcessDetailsView()
424 mAllDetails.removeView(mActiveDetails.get(i).mRootView);
516 mRootView = view;
DProcessStatsMemDetail.java55 private View mRootView; field in ProcessStatsMemDetail
81 mRootView = view; in onCreateView()
92 mMemStateParent = (ViewGroup)mRootView.findViewById(R.id.mem_state); in createDetails()
93 mMemUseParent = (ViewGroup)mRootView.findViewById(R.id.mem_use); in createDetails()
DInstalledAppDetails.java118 private View mRootView; field in InstalledAppDetails
465 mRootView = view; in onCreateView()
575 final View appSnippet = mRootView.findViewById(R.id.app_snippet); in setAppLabelAndIcon()
743 TextView autoLaunchTitleView = (TextView) mRootView.findViewById(R.id.auto_launch_title); in refreshUi()
744 TextView autoLaunchView = (TextView) mRootView.findViewById(R.id.auto_launch); in refreshUi()
803 LinearLayout permsView = (LinearLayout) mRootView.findViewById(R.id.permissions_section); in refreshUi()
881 TextView descr = (TextView) mRootView.findViewById( in refreshUi()
1394 (TextView) mRootView.findViewById(R.id.auto_launch_title);
1395 TextView autoLaunchView = (TextView) mRootView.findViewById(R.id.auto_launch);
DAppOpsDetails.java57 private View mRootView; field in AppOpsDetails
63 final View appSnippet = mRootView.findViewById(R.id.app_snippet); in setAppLabelAndIcon()
189 mRootView = view; in onCreateView()
DRunningProcessesView.java96 View mRootView; field in RunningProcessesView.ActiveItem
188 ai.mRootView = rootView; in bind()
491 if (ai.mRootView.getWindowToken() == null) { in updateTimes()
DAppOpsSummary.java37 private View mRootView; field in AppOpsSummary
97 mRootView = rootView; in onCreateView()
/packages/apps/Settings/src/com/android/settings/fuelgauge/
DPowerUsageDetail.java307 private View mRootView; field in PowerUsageDetail
342 mRootView = view; in onCreateView()
389 final TextView summary = (TextView) mRootView.findViewById(android.R.id.summary); in createDetails()
396 mTitleView = (TextView) mRootView.findViewById(android.R.id.title); in createDetails()
399 final TextView text1 = (TextView)mRootView.findViewById(android.R.id.text1); in createDetails()
402 mTwoButtonsPanel = (ViewGroup)mRootView.findViewById(R.id.two_buttons_panel); in createDetails()
403 mForceStopButton = (Button)mRootView.findViewById(R.id.left_button); in createDetails()
404 mReportButton = (Button)mRootView.findViewById(R.id.right_button); in createDetails()
407 final ProgressBar progress = (ProgressBar) mRootView.findViewById(android.R.id.progress); in createDetails()
410 final ImageView icon = (ImageView) mRootView.findViewById(android.R.id.icon); in createDetails()
[all …]
/packages/apps/UnifiedEmail/src/com/android/mail/browse/
DConversationViewAdapter.java198 mRootView = v; in bindView()
204 mRootView = view; in rebindView()
209 return mRootView.findViewById(R.id.reply_button); in getFocusableView()
293 mRootView = v; in bindView()
298 return mRootView.findViewById(R.id.upper_header); in getFocusableView()
391 mRootView = view; in rebindView()
431 mRootView = v; in bindView()
505 mRootView = v; in bindView()
773 if (mItems.get(i).mRootView == curr) { in getNextOverlayView()
779 if (item.mRootView != null && !scraps.contains(item.mRootView) && in getNextOverlayView()
[all …]
DConversationOverlayItem.java42 protected View mRootView; field in ConversationOverlayItem
196 return mRootView; in getFocusableView()
/packages/apps/Camera/src/com/android/camera/
DPanoramaModule.java175 private View mRootView; field in PanoramaModule
228 mRootView = parent; in init()
661 mPanoProgressBar = (PanoProgressBar) mRootView.findViewById(R.id.pano_pan_progress_bar); in setViews()
675 mLeftIndicator = mRootView.findViewById(R.id.pano_pan_left_indicator); in setViews()
676 mRightIndicator = mRootView.findViewById(R.id.pano_pan_right_indicator); in setViews()
679 mTooFastPrompt = (TextView) mRootView.findViewById(R.id.pano_capture_too_fast_textview); in setViews()
681 mPreviewArea = (LayoutNotifyView) mRootView.findViewById(R.id.pano_preview_area); in setViews()
684 … mSavingProgressBar = (PanoProgressBar) mRootView.findViewById(R.id.pano_saving_progress_bar); in setViews()
690 mCaptureIndicator = mRootView.findViewById(R.id.pano_capture_indicator); in setViews()
692 mReviewLayout = mRootView.findViewById(R.id.pano_review_layout); in setViews()
[all …]
DVideoModule.java125 private View mRootView; field in VideoModule
361 … mPreviewSurfaceView = (PreviewSurfaceView) mRootView.findViewById(R.id.preview_surface_view); in initializeSurfaceView()
383 mRenderOverlay = (RenderOverlay) mRootView.findViewById(R.id.render_overlay); in initializeOverlay()
419 mRootView = root; in init()
440 mActivity.getLayoutInflater().inflate(R.layout.video_module, (ViewGroup) mRootView); in init()
2106 mBlocker = mRootView.findViewById(R.id.blocker); in initializeControlByIntent()
2107 mMenu = mRootView.findViewById(R.id.menu); in initializeControlByIntent()
2116 mOnScreenIndicators = mRootView.findViewById(R.id.on_screen_indicators); in initializeControlByIntent()
2117 mFlashIndicator = (ImageView) mRootView.findViewById(R.id.menu_flash_indicator); in initializeControlByIntent()
2123 mReviewDoneButton = (Rotatable) mRootView.findViewById(R.id.btn_done); in initializeControlByIntent()
[all …]
DPhotoModule.java131 private View mRootView; field in PhotoModule
464 mRootView = parent; in init()
476 mActivity.getLayoutInflater().inflate(R.layout.photo_module, (ViewGroup) mRootView); in init()
500 mCountDownView = (CountDownView) (mRootView.findViewById(R.id.count_down_to_capture)); in init()
797 mOnScreenIndicators = mRootView.findViewById(R.id.on_screen_indicators); in initOnScreenIndicator()
1614 mBlocker = mRootView.findViewById(R.id.blocker); in initializeControlByIntent()
1615 mMenu = mRootView.findViewById(R.id.menu); in initializeControlByIntent()
1633 mReviewDoneButton = (Rotatable) mRootView.findViewById(R.id.btn_done); in initializeControlByIntent()
1634 mReviewCancelButton = (Rotatable) mRootView.findViewById(R.id.btn_cancel); in initializeControlByIntent()
1635 mReviewRetakeButton = mRootView.findViewById(R.id.btn_retake); in initializeControlByIntent()
[all …]
/packages/apps/LegacyCamera/src/com/android/camera/ui/
DSharePopup.java65 private View mRootView; field in SharePopup
145 mRootView = sharePopup.findViewById(R.id.root); in SharePopup()
146 LayoutParams params = mRootView.getLayoutParams(); in SharePopup()
149 mRootView.setLayoutParams(params); in SharePopup()
166 int hPaddingRootView = mRootView.getPaddingLeft() + mRootView.getPaddingRight(); in setOrientation()
167 int vPaddingRootView = mRootView.getPaddingTop() + mRootView.getPaddingBottom(); in setOrientation()
/packages/apps/TvSettings/QuickSettings/src/com/android/tv/quicksettings/
DQuickSettings.java45 private View mRootView; field in QuickSettings
63 mRootView = getWindow().getDecorView().findViewById(android.R.id.content); in onCreate()
64 mRootView.setTranslationX(mSlidOutTranslationX); in onCreate()
118 mRootView.animate().cancel(); in onResume()
119 mRootView.animate().translationX(0).start(); in onResume()
124 mRootView.animate().cancel(); in onPause()
125 mRootView.animate().translationX(mSlidOutTranslationX).start(); in onPause()
/packages/apps/Contacts/src/com/android/contacts/group/
DGroupBrowseListFragment.java82 private View mRootView; field in GroupBrowseListFragment
111 mRootView = inflater.inflate(R.layout.group_browse_list_fragment, null); in onCreateView()
112 mEmptyView = (TextView)mRootView.findViewById(R.id.empty); in onCreateView()
118 mListView = (AutoScrollListView) mRootView.findViewById(R.id.list); in onCreateView()
135 mAddAccountsView = mRootView.findViewById(R.id.add_accounts); in onCreateView()
136 mAddAccountButton = mRootView.findViewById(R.id.add_account_button); in onCreateView()
149 return mRootView; in onCreateView()
DGroupDetailFragment.java100 private View mRootView; field in GroupDetailFragment
153 mRootView = inflater.inflate(R.layout.group_detail_fragment, container, false); in onCreateView()
154 mGroupTitle = (TextView) mRootView.findViewById(R.id.group_title); in onCreateView()
155 mGroupSize = (TextView) mRootView.findViewById(R.id.group_size); in onCreateView()
156 mGroupSourceViewContainer = (ViewGroup) mRootView.findViewById( in onCreateView()
158 mEmptyView = mRootView.findViewById(android.R.id.empty); in onCreateView()
159 mMemberListView = (ListView) mRootView.findViewById(android.R.id.list); in onCreateView()
163 return mRootView; in onCreateView()
DGroupEditorFragment.java180 private ViewGroup mRootView; field in GroupEditorFragment
212 mRootView = (ViewGroup) inflater.inflate(R.layout.group_editor_fragment, container, false); in onCreateView()
213 return mRootView; in onCreateView()
388 View oldEditorView = mRootView.findViewWithTag(CURRENT_EDITOR_TAG); in setupEditorForAccount()
390 mRootView.removeView(oldEditorView); in setupEditorForAccount()
392 editorView = mLayoutInflater.inflate(newGroupEditorId, mRootView, false); in setupEditorForAccount()
398 editorView = mRootView.findViewWithTag(CURRENT_EDITOR_TAG); in setupEditorForAccount()
461 mRootView.addView(editorView); in setupEditorForAccount()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/userdictionary/
DUserDictionaryAddWordFragment.java56 private View mRootView; field in UserDictionaryAddWordFragment
71 mRootView = inflater.inflate(R.layout.user_dictionary_add_word_fullscreen, null); in onCreateView()
76 mContents = new UserDictionaryAddWordContents(mRootView, getArguments()); in onCreateView()
83 mContents = new UserDictionaryAddWordContents(mRootView, in onCreateView()
88 return mRootView; in onCreateView()
136 (Spinner)mRootView.findViewById(R.id.user_dictionary_add_locale); in updateSpinner()
/packages/apps/Settings/src/com/android/settings/inputmethod/
DUserDictionaryAddWordFragment.java50 private View mRootView; field in UserDictionaryAddWordFragment
65 mRootView = inflater.inflate(R.layout.user_dictionary_add_word_fullscreen, null); in onCreateView()
70 mContents = new UserDictionaryAddWordContents(mRootView, getArguments()); in onCreateView()
77 mContents = new UserDictionaryAddWordContents(mRootView, in onCreateView()
82 return mRootView; in onCreateView()
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/widget/picker/
DPicker.java61 private ViewGroup mRootView; field in Picker
195 mRootView = (ViewGroup) inflater.inflate(getRootLayoutId(), null); in onCreateView()
196 mPickerView = (ViewGroup) mRootView.findViewById(getPickerId()); in onCreateView()
230 return mRootView; in onCreateView()

12