Searched refs:rootView (Results 1 - 25 of 45) sorted by relevance

12

/packages/apps/Dialer/src/com/android/dialer/calllog/
H A DPromoCardViewHolder.java31 public static PromoCardViewHolder create(View rootView) { argument
32 return new PromoCardViewHolder(rootView);
49 * @param rootView The root view.
51 private PromoCardViewHolder(View rootView) { argument
52 super(rootView);
54 mPrimaryActionView = rootView.findViewById(R.id.primary_action);
55 mSecondaryActionView = rootView.findViewById(R.id.secondary_action);
/packages/services/Car/car-cluster-demo-renderer/src/android/car/cluster/demorenderer/
H A DDemoInstrumentClusterView.java163 View rootView = inflate(getContext(), R.layout.instrument_cluster, null);
164 mSpeedView = (TextView) rootView.findViewById(R.id.speed);
165 mEventTitleView = (TextView) rootView.findViewById(R.id.nav_event_title);
166 mDistanceView = (TextView) rootView.findViewById(R.id.nav_distance);
167 mNavPanel = rootView.findViewById(R.id.nav_layout);
169 mMediaPanel = rootView.findViewById(R.id.media_layout);
170 mMediaArtistView = (TextView) rootView.findViewById(R.id.media_artist);
171 mMediaAlbumView = (TextView) rootView.findViewById(R.id.media_album);
172 mMediaTrackView = (TextView) rootView.findViewById(R.id.media_track);
173 mMediaImageView = (ImageView) rootView
[all...]
/packages/apps/Settings/src/com/android/settings/applications/
H A DAppOpsSummary.java102 View rootView = mInflater.inflate(R.layout.app_ops_summary,
105 mRootView = rootView;
109 mViewPager = (ViewPager) rootView.findViewById(R.id.pager);
113 PagerTabStrip tabs = (PagerTabStrip) rootView.findViewById(R.id.tabs);
127 ((PreferenceFrameLayout.LayoutParams) rootView.getLayoutParams()).removeBorders = true;
130 return rootView;
H A DBackgroundCheckSummary.java50 View rootView = mInflater.inflate(R.layout.background_check_summary,
56 ((PreferenceFrameLayout.LayoutParams) rootView.getLayoutParams()).removeBorders = true;
64 return rootView;
H A DConfirmConvertToFbe.java36 View rootView = inflater.inflate(R.layout.confirm_convert_fbe, null);
38 final Button button = (Button) rootView.findViewById(R.id.button_confirm_convert_fbe);
48 return rootView;
H A DConvertToFbe.java51 View rootView = inflater.inflate(R.layout.convert_fbe, null);
53 final Button button = (Button) rootView.findViewById(R.id.button_convert_fbe);
62 return rootView;
H A DRunningServices.java51 View rootView = inflater.inflate(R.layout.manage_applications_running, null);
52 mRunningProcessesView = (RunningProcessesView) rootView.findViewById(
55 mLoadingContainer = rootView.findViewById(R.id.loading_container);
57 return rootView;
H A DAppViewHolder.java32 public View rootView; field in class:AppViewHolder
47 holder.rootView = convertView;
/packages/apps/Messaging/src/com/android/messaging/ui/
H A DSnackBarInteraction.java58 final View rootView = snackBar.getRootView();
59 return mView.animate().translationY(-rootView.getMeasuredHeight());
H A DSnackBarManager.java144 final View rootView = snackBar.getRootView();
155 mPopupWindow.setContentView(rootView);
230 final View rootView = snackBar.getRootView();
234 rootView.setVisibility(View.GONE);
266 final View rootView = snackBar.getRootView();
275 rootView.measure(widthSpec, heightSpec);
279 final View rootView = snackBar.getRootView();
281 snackBarView.setTranslationY(rootView.getMeasuredHeight());
290 final View rootView = snackBar.getRootView();
292 return normalizeAnimator(snackBarView.animate()).translationY(rootView
[all...]
/packages/apps/UnifiedEmail/src/com/android/mail/utils/
H A DDrawIdler.java39 public void setRootView(View rootView) { argument
40 if (mRoot == rootView) {
46 mRoot = rootView;
/packages/apps/Messaging/src/com/android/messaging/util/
H A DChangeDefaultSmsAppHelper.java46 * @param rootView - if non-null, use this to attach a snackBar
52 final View composeView, final View rootView,
71 composeView, rootView, activity);
82 final View composeView, final View rootView,
90 if (rootView == null) {
95 rootView,
50 warnOfMissingActionConditions(final boolean sending, final Runnable runAfterMadeDefault, final View composeView, final View rootView, final Activity activity, final Fragment fragment) argument
80 promptToChangeDefaultSmsApp(final boolean sending, final Runnable runAfterMadeDefault, final View composeView, final View rootView, final Activity activity) argument
/packages/apps/PackageInstaller/src/com/android/packageinstaller/permission/ui/handheld/
H A DPermissionsFrameFragment.java49 ViewGroup rootView = (ViewGroup) inflater.inflate(R.layout.permissions_frame, container,
51 mPrefsView = (ViewGroup) rootView.findViewById(R.id.prefs_container);
53 mPrefsView = rootView;
55 mLoadingView = rootView.findViewById(R.id.loading_container);
60 return rootView;
/packages/apps/Messaging/src/com/android/messaging/ui/appsettings/
H A DGroupMmsSettingDialog.java68 final View rootView = inflater.inflate(R.layout.group_mms_setting_dialog, null, false);
70 rootView.findViewById(R.id.disable_group_mms_button);
72 rootView.findViewById(R.id.enable_group_mms_button);
90 return rootView;
/packages/apps/Gallery/src/com/android/camera/
H A DMovieView.java46 View rootView = findViewById(R.id.root);
48 mControl = new MovieViewControl(rootView, this, intent.getData()) {
H A DMovieViewControl.java79 public MovieViewControl(View rootView, Context context, Uri videoUri) { argument
81 mVideoView = (VideoView) rootView.findViewById(R.id.surface_view);
82 mProgressView = rootView.findViewById(R.id.progress_indicator);
/packages/apps/UnifiedEmail/src/com/android/mail/ui/
H A DSecureConversationViewController.java83 View rootView = inflater.inflate(R.layout.secure_conversation_view, container, false);
84 mScrollView = (MessageScrollView) rootView.findViewById(R.id.scroll_view);
85 mConversationHeaderView = (ConversationViewHeader) rootView.findViewById(R.id.conv_header);
86 mMessageHeaderView = (MessageHeaderView) rootView.findViewById(R.id.message_header);
87 mSnapHeaderView = (MessageHeaderView) rootView.findViewById(R.id.snap_header);
88 mMessageFooterView = (MessageFooterView) rootView.findViewById(R.id.message_footer);
96 final int color = rootView.getResources().getColor(
104 mProgressController.instantiateProgressIndicators(rootView);
105 mWebView = (MessageWebView) rootView.findViewById(R.id.webview);
128 return rootView;
[all...]
H A DConversationViewProgressController.java64 public void instantiateProgressIndicators(View rootView) { argument
65 mBackgroundView = rootView.findViewById(R.id.background_view);
66 mProgressView = rootView.findViewById(R.id.loading_progress);
H A DConversationListFragment.java508 View rootView = inflater.inflate(R.layout.conversation_list, null);
509 mEmptyView = (ConversationListEmptyView) rootView.findViewById(R.id.empty_view);
510 mSecurityHoldView = rootView.findViewById(R.id.security_hold_view);
511 mSecurityHoldText = (TextView) rootView.findViewById(R.id.security_hold_text);
512 mSecurityHoldButton = rootView.findViewById(R.id.security_hold_button);
514 mLoadingView = rootView.findViewById(R.id.conversation_list_loading_view);
515 mListView = (SwipeableListView) rootView.findViewById(R.id.conversation_list_view);
532 ((ViewGroup) rootView.findViewById(R.id.conversation_list_parent_frame))
543 (MailSwipeRefreshLayout) rootView.findViewById(R.id.swipe_refresh_widget);
550 return rootView;
[all...]
/packages/apps/Gallery2/src/com/android/gallery3d/app/
H A DMovieActivity.java66 private void setSystemUiVisibility(View rootView) { argument
68 rootView.setSystemUiVisibility(View.SYSTEM_UI_FLAG_LAYOUT_STABLE
82 View rootView = findViewById(R.id.movie_view_root);
84 setSystemUiVisibility(rootView);
91 mPlayer = new MoviePlayer(rootView, this, intent.getData(), savedInstanceState,
/packages/apps/PackageInstaller/src/com/android/packageinstaller/permission/ui/television/
H A DPermissionsFrameFragment.java61 ViewGroup rootView = (ViewGroup) inflater.inflate(R.layout.permissions_frame, container,
63 mPrefsView = (ViewGroup) rootView.findViewById(R.id.prefs_container);
65 mPrefsView = rootView;
67 mLoadingView = rootView.findViewById(R.id.loading_container);
72 return rootView;
H A DManagePermissionsFragment.java120 private static void bindPermissionUi(SettingsWithHeader fragment, @Nullable View rootView) { argument
121 if (fragment == null || rootView == null) {
243 private static void bindPermissionUi(SettingsWithHeader fragment, @Nullable View rootView) { argument
244 if (fragment == null || rootView == null) {
/packages/apps/Settings/src/com/android/settings/notification/
H A DRestrictedDropDownPreference.java205 View rootView = super.getView(position, convertView, parent);
208 TextView text = (TextView) rootView.findViewById(TEXT_RES_ID);
212 View restrictedIcon = rootView.findViewById(R.id.restricted_icon);
216 return rootView;
/packages/apps/Messaging/src/com/android/messaging/ui/conversationlist/
H A DConversationListFragment.java173 final ViewGroup rootView = (ViewGroup) inflater.inflate(R.layout.conversation_list_fragment,
175 mRecyclerView = (RecyclerView) rootView.findViewById(android.R.id.list);
176 mEmptyListMessageView = (ListEmptyView) rootView.findViewById(R.id.no_conversations_view);
221 mStartNewConversationButton = (ImageView) rootView.findViewById(
240 ViewGroupCompat.setTransitionGroup(rootView, false);
243 return rootView;
/packages/apps/ContactsCommon/TestCommon/src/com/android/contacts/common/test/
H A DIntegrationTestUtils.java150 public List<TextView> getTextViewsWithString(final View rootView, final String text) argument
156 for (TextView textView : getAllViews(TextView.class, rootView)) {

Completed in 491 milliseconds

12