Searched refs:mContentView (Results 1 - 10 of 10) sorted by relevance

/frameworks/base/tests/VoiceInteraction/src/com/android/test/voiceinteraction/
H A DMainInteractionSession.java41 View mContentView; field in class:MainInteractionSession
117 mContentView = getLayoutInflater().inflate(R.layout.voice_interaction_session, null);
118 mAssistVisualizer = (AssistVisualizer)mContentView.findViewById(R.id.assist_visualizer);
122 mTopContent = mContentView.findViewById(R.id.top_content);
123 mBottomContent = mContentView.findViewById(R.id.bottom_content);
124 mText = (TextView)mContentView.findViewById(R.id.text);
125 mTreeButton = (Button)mContentView.findViewById(R.id.do_tree);
127 mTextButton = (Button)mContentView.findViewById(R.id.do_text);
129 mStartButton = (Button)mContentView.findViewById(R.id.start);
131 mScreenshot = (ImageView)mContentView
[all...]
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DImageCardView.java38 private TextView mContentView; field in class:ImageCardView
60 mContentView = (TextView) v.findViewById(R.id.content_text);
206 if (mContentView == null) {
210 mContentView.setText(text);
217 if (mContentView == null) {
221 return mContentView.getText();
232 if (drawable != null && mContentView!= null && mContentView.getVisibility() != GONE) {
H A DGuidedActionsStylist.java124 private View mContentView; field in class:GuidedActionsStylist.ViewHolder
137 mContentView = v.findViewById(R.id.guidedactions_item_content);
150 return mContentView;
347 if (vh.mContentView != null) {
348 ViewGroup.LayoutParams contentLp = vh.mContentView.getLayoutParams();
354 vh.mContentView.setLayoutParams(contentLp);
/frameworks/base/core/java/com/android/internal/widget/
H A DFloatingToolbar.java1008 private final ViewGroup mContentView; field in class:FloatingToolbar.FloatingToolbarMainPanel
1034 mContentView = new LinearLayout(context);
1035 viewFader = new ViewFader(mContentView);
1054 mContentView.removeAllViews();
1084 mContentView.addView(menuItemButton);
1103 mContentView.addView(mOpenOverflowButton);
1115 return mContentView;
1132 Preconditions.checkState(mContentView.getParent() == null);
1133 mContentView.measure(MeasureSpec.UNSPECIFIED, MeasureSpec.UNSPECIFIED);
1134 return new Size(mContentView
1153 private final LinearLayout mContentView; field in class:FloatingToolbar.FloatingToolbarOverflowPanel
[all...]
/frameworks/base/core/java/android/widget/
H A DPopupWindow.java112 private View mContentView; field in class:PopupWindow
489 return mContentView;
508 mContentView = contentView;
510 if (mContext == null && mContentView != null) {
511 mContext = mContentView.getContext();
514 if (mWindowManager == null && mContentView != null) {
1010 if (isShowing() || mContentView == null) {
1093 if (isShowing() || mContentView == null) {
1157 if (mContentView == null || mContext == null || mWindowManager == null) {
1171 mBackgroundView = createBackgroundView(mContentView);
[all...]
H A DEditor.java2376 mContentView = linearLayout;
2377 mContentView.setBackgroundResource(
2390 mContentView.addView(mDeleteTextView);
2532 protected ViewGroup mContentView; field in class:Editor.PinnedPopupWindow
2553 mContentView.setLayoutParams(wrapContent);
2555 mPopupWindow.setContentView(mContentView);
2569 mContentView.measure(
2579 * This method assumes that mContentView has properly been measured from its content. */
2582 final int width = mContentView.getMeasuredWidth();
2600 final int width = mContentView
[all...]
/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/support/v7/appcompat/src/android/support/v7/internal/app/
H A DWindowDecorActionBar.java96 private View mContentView; field in class:WindowDecorActionBar
140 if (mContentAnimations && mContentView != null) {
141 ViewCompat.setTranslationY(mContentView, 0f);
177 mContentView = decor.findViewById(android.R.id.content);
773 if (mContentAnimations && mContentView != null) {
774 ViewCompat.setTranslationY(mContentView, startingY);
775 anim.play(ViewCompat.animate(mContentView).translationY(0f));
792 if (mContentAnimations && mContentView != null) {
793 ViewCompat.setTranslationY(mContentView, 0);
821 if (mContentAnimations && mContentView !
[all...]
/frameworks/base/core/java/com/android/internal/app/
H A DWindowDecorActionBar.java85 private View mContentView; field in class:WindowDecorActionBar
131 if (mContentAnimations && mContentView != null) {
132 mContentView.setTranslationY(0);
172 mContentView = decor.findViewById(android.R.id.content);
780 if (mContentAnimations && mContentView != null) {
781 b.with(ObjectAnimator.ofFloat(mContentView, View.TRANSLATION_Y,
805 if (mContentAnimations && mContentView != null) {
806 mContentView.setTranslationY(0);
839 if (mContentAnimations && mContentView != null) {
840 b.with(ObjectAnimator.ofFloat(mContentView, Vie
[all...]
/frameworks/base/core/java/android/app/
H A DNotification.java2074 private RemoteViews mContentView; field in class:Notification.Builder
2358 mContentView = views;
3145 if (mContentView != null) {
3146 return mContentView;
3576 mContentView = n.contentView;

Completed in 5853 milliseconds