Searched defs:mContentView (Results 1 - 21 of 21) sorted by relevance

/frameworks/support/frameworks/support/samples/SupportDesignDemos/src/com/example/android/support/design/widget/
H A DSnackbarUsage.java33 private ViewGroup mContentView; field in class:SnackbarUsage
40 mContentView = (ViewGroup) findViewById(R.id.content_view);
48 Snackbar.make(mContentView, "Short snackbar message", Snackbar.LENGTH_SHORT).show();
52 Snackbar.make(mContentView, "Short snackbar message", Snackbar.LENGTH_SHORT)
63 Snackbar.make(mContentView, "Long snackbar message which wraps onto another line and"
68 Snackbar.make(mContentView, "Long snackbar message which wraps onto another line and"
80 Snackbar.make(mContentView, "Long snackbar message which wraps onto another line and"
/frameworks/support/samples/SupportDesignDemos/src/com/example/android/support/design/widget/
H A DSnackbarUsage.java33 private ViewGroup mContentView; field in class:SnackbarUsage
40 mContentView = (ViewGroup) findViewById(R.id.content_view);
48 Snackbar.make(mContentView, "Short snackbar message", Snackbar.LENGTH_SHORT).show();
52 Snackbar.make(mContentView, "Short snackbar message", Snackbar.LENGTH_SHORT)
63 Snackbar.make(mContentView, "Long snackbar message which wraps onto another line and"
68 Snackbar.make(mContentView, "Long snackbar message which wraps onto another line and"
80 Snackbar.make(mContentView, "Long snackbar message which wraps onto another line and"
/frameworks/support/v7/appcompat/tests/src/android/support/v7/app/
H A DDrawerLayoutDoubleTest.java45 private View mContentView; field in class:DrawerLayoutDoubleTest
57 mContentView = mDrawerLayout.findViewById(R.id.content);
68 // thrown since mContentView is not a drawer.
70 mDrawerLayout.isDrawerOpen(mContentView));
77 // thrown since mContentView is not a drawer.
79 mDrawerLayout.isDrawerVisible(mContentView));
86 // thrown since mContentView is not a drawer.
87 onView(withId(R.id.drawer_layout)).perform(openDrawer(mContentView));
94 // thrown since mContentView is not a drawer.
95 onView(withId(R.id.drawer_layout)).perform(closeDrawer(mContentView));
[all...]
H A DDrawerLayoutTest.java49 private View mContentView; field in class:DrawerLayoutTest
60 mContentView = mDrawerLayout.findViewById(R.id.content);
104 mContentView.setFocusableInTouchMode(true);
105 mContentView.setOnFocusChangeListener(new View.OnFocusChangeListener() {
239 final int contentHeight = mContentView.getHeight();
/frameworks/support/frameworks/support/samples/SupportLeanbackDemos/src/com/example/android/leanback/
H A DOnboardingDemoFragment.java48 private View mContentView; field in class:OnboardingDemoFragment
85 mContentView = layoutInflater.inflate(R.layout.onboarding_content, viewGroup, false);
86 mContentBackgroundView = (ImageView) mContentView.findViewById(R.id.background_image);
87 mContentAnimationView = (ImageView) mContentView.findViewById(R.id.animation_image);
88 return mContentView;
102 mContentAnimator = createFadeInAnimator(mContentView);
122 Animator fadeOut = createFadeOutAnimator(mContentView);
130 Animator fadeIn = createFadeInAnimator(mContentView);
H A DOnboardingDemoSupportFragment.java50 private View mContentView; field in class:OnboardingDemoSupportFragment
87 mContentView = layoutInflater.inflate(R.layout.onboarding_content, viewGroup, false);
88 mContentBackgroundView = (ImageView) mContentView.findViewById(R.id.background_image);
89 mContentAnimationView = (ImageView) mContentView.findViewById(R.id.animation_image);
90 return mContentView;
104 mContentAnimator = createFadeInAnimator(mContentView);
124 Animator fadeOut = createFadeOutAnimator(mContentView);
132 Animator fadeIn = createFadeInAnimator(mContentView);
/frameworks/support/samples/SupportLeanbackDemos/src/com/example/android/leanback/
H A DOnboardingDemoFragment.java48 private View mContentView; field in class:OnboardingDemoFragment
85 mContentView = layoutInflater.inflate(R.layout.onboarding_content, viewGroup, false);
86 mContentBackgroundView = (ImageView) mContentView.findViewById(R.id.background_image);
87 mContentAnimationView = (ImageView) mContentView.findViewById(R.id.animation_image);
88 return mContentView;
102 mContentAnimator = createFadeInAnimator(mContentView);
122 Animator fadeOut = createFadeOutAnimator(mContentView);
130 Animator fadeIn = createFadeInAnimator(mContentView);
H A DOnboardingDemoSupportFragment.java50 private View mContentView; field in class:OnboardingDemoSupportFragment
87 mContentView = layoutInflater.inflate(R.layout.onboarding_content, viewGroup, false);
88 mContentBackgroundView = (ImageView) mContentView.findViewById(R.id.background_image);
89 mContentAnimationView = (ImageView) mContentView.findViewById(R.id.animation_image);
90 return mContentView;
104 mContentAnimator = createFadeInAnimator(mContentView);
124 Animator fadeOut = createFadeOutAnimator(mContentView);
132 Animator fadeIn = createFadeInAnimator(mContentView);
/frameworks/support/compat/api20/android/support/v4/app/
H A DNotificationCompatApi20.java35 private RemoteViews mContentView; field in class:NotificationCompatApi20.Builder
84 mContentView = contentView;
102 if (mContentView != null) {
103 notification.contentView = mContentView;
/frameworks/support/compat/kitkat/android/support/v4/app/
H A DNotificationCompatKitKat.java36 private RemoteViews mContentView; field in class:NotificationCompatKitKat.Builder
95 mContentView = contentView;
120 if (mContentView != null) {
121 notification.contentView = mContentView;
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DImageCardView.java128 private TextView mContentView; field in class:ImageCardView
197 mContentView = (TextView) inflater.inflate(R.layout.lb_image_card_view_themed_content,
199 mInfoArea.addView(mContentView);
227 (RelativeLayout.LayoutParams) mContentView.getLayoutParams();
237 mContentView.setLayoutParams(relativeLayoutParams);
244 relativeLayoutParams.addRule(RelativeLayout.ALIGN_BOTTOM, mContentView.getId());
415 if (mContentView == null) {
418 mContentView.setText(text);
425 if (mContentView == null) {
429 return mContentView
[all...]
H A DGuidedActionsStylist.java169 private View mContentView; field in class:GuidedActionsStylist.ViewHolder
208 mContentView = v.findViewById(R.id.guidedactions_item_content);
225 return mContentView;
372 private View mContentView; field in class:GuidedActionsStylist
410 mContentView = mMainView.findViewById(mButtonActions ? R.id.guidedactions_content2 :
485 mContentView = null;
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/ui/
H A DPrintPreviewController.java57 private final PrintContentView mContentView; field in class:PrintPreviewController
84 mContentView = (PrintContentView) activity.findViewById(R.id.options_content);
96 return mContentView.isOptionsOpened();
100 mContentView.closeOptions();
/frameworks/base/tests/VoiceInteraction/src/com/android/test/voiceinteraction/
H A DMainInteractionSession.java41 View mContentView; field in class:MainInteractionSession
119 mContentView = getLayoutInflater().inflate(R.layout.voice_interaction_session, null);
120 mAssistVisualizer = (AssistVisualizer)mContentView.findViewById(R.id.assist_visualizer);
124 mTopContent = mContentView.findViewById(R.id.top_content);
125 mBottomContent = mContentView.findViewById(R.id.bottom_content);
126 mText = (TextView)mContentView.findViewById(R.id.text);
127 mTreeButton = (Button)mContentView.findViewById(R.id.do_tree);
129 mTextButton = (Button)mContentView.findViewById(R.id.do_text);
131 mStartButton = (Button)mContentView.findViewById(R.id.start);
133 mScreenshot = (ImageView)mContentView
[all...]
/frameworks/support/compat/api21/android/support/v4/app/
H A DNotificationCompatApi21.java59 private RemoteViews mContentView; field in class:NotificationCompatApi21.Builder
114 mContentView = contentView;
133 if (mContentView != null) {
134 notification.contentView = mContentView;
/frameworks/support/compat/jellybean/android/support/v4/app/
H A DNotificationCompatJellybean.java71 private RemoteViews mContentView; field in class:NotificationCompatJellybean.Builder
125 mContentView = contentView;
156 if (mContentView != null) {
157 notif.contentView = mContentView;
/frameworks/base/core/java/android/widget/
H A DPopupWindow.java152 private View mContentView; field in class:PopupWindow
600 return mContentView;
619 mContentView = contentView;
621 if (mContext == null && mContentView != null) {
622 mContext = mContentView.getContext();
625 if (mWindowManager == null && mContentView != null) {
1136 if (isShowing() || mContentView == null) {
1215 if (isShowing() || mContentView == null) {
1281 if (mContentView == null || mContext == null || mWindowManager == null) {
1295 mBackgroundView = createBackgroundView(mContentView);
[all...]
H A DEditor.java2829 mContentView = linearLayout;
2830 mContentView.setBackgroundResource(
2843 mContentView.addView(mDeleteTextView);
2999 protected ViewGroup mContentView; field in class:Editor.PinnedPopupWindow
3029 mContentView.setLayoutParams(wrapContent);
3031 mPopupWindow.setContentView(mContentView);
3045 mContentView.measure(
3055 * This method assumes that mContentView has properly been measured from its content. */
3058 final int width = mContentView.getMeasuredWidth();
3076 final int width = mContentView
[all...]
/frameworks/base/core/java/com/android/internal/app/
H A DWindowDecorActionBar.java87 private View mContentView; field in class:WindowDecorActionBar
133 if (mContentAnimations && mContentView != null) {
134 mContentView.setTranslationY(0);
174 mContentView = decor.findViewById(android.R.id.content);
784 if (mContentAnimations && mContentView != null) {
785 b.with(ObjectAnimator.ofFloat(mContentView, View.TRANSLATION_Y,
809 if (mContentAnimations && mContentView != null) {
810 mContentView.setTranslationY(0);
843 if (mContentAnimations && mContentView != null) {
844 b.with(ObjectAnimator.ofFloat(mContentView, Vie
[all...]
/frameworks/support/v7/appcompat/src/android/support/v7/app/
H A DWindowDecorActionBar.java99 View mContentView; field in class:WindowDecorActionBar
141 if (mContentAnimations && mContentView != null) {
142 ViewCompat.setTranslationY(mContentView, 0f);
178 mContentView = decor.findViewById(android.R.id.content);
787 if (mContentAnimations && mContentView != null) {
788 ViewCompat.setTranslationY(mContentView, startingY);
789 anim.play(ViewCompat.animate(mContentView).translationY(0f));
806 if (mContentAnimations && mContentView != null) {
807 ViewCompat.setTranslationY(mContentView, 0);
835 if (mContentAnimations && mContentView !
[all...]
/frameworks/support/compat/java/android/support/v4/app/
H A DNotificationCompat.java521 if (b.mContentView != null) {
522 n.contentView = b.mContentView;
538 if (b.mContentView != null) {
539 result.contentView = b.mContentView;
614 if (b.mContentView != null) {
615 notification.contentView = b.mContentView;
641 b.mGroupKey, b.mGroupSummary, b.mSortKey, b.mContentView, b.mBigContentView);
713 b.mContentView, b.mBigContentView);
764 b.mGroupKey, b.mGroupSummary, b.mSortKey, b.mContentView, b.mBigContentView);
823 b.mGroupKey, b.mGroupSummary, b.mSortKey, b.mContentView,
1042 RemoteViews mContentView; field in class:NotificationCompat.Builder
[all...]

Completed in 534 milliseconds