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

/frameworks/base/tests/VoiceInteraction/src/com/android/test/voiceinteraction/
H A DMainInteractionSession.java33 View mContentView; field in class:MainInteractionSession
63 mContentView = getLayoutInflater().inflate(R.layout.voice_interaction_session, null);
64 mText = (TextView)mContentView.findViewById(R.id.text);
65 mStartButton = (Button)mContentView.findViewById(R.id.start);
67 mConfirmButton = (Button)mContentView.findViewById(R.id.confirm);
69 mCompleteButton = (Button)mContentView.findViewById(R.id.complete);
71 mAbortButton = (Button)mContentView.findViewById(R.id.abort);
74 return mContentView;
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DImageCardView.java37 private TextView mContentView; field in class:ImageCardView
59 mContentView = (TextView) v.findViewById(R.id.content_text);
180 if (mContentView == null) {
184 mContentView.setText(text);
189 if (mContentView == null) {
193 return mContentView.getText();
232 mContentView.setMaxLines(2);
234 mContentView.setMaxLines(1);
/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/core/java/android/widget/
H A DPopupWindow.java86 private View mContentView; field in class:PopupWindow
418 return mContentView;
437 mContentView = contentView;
439 if (mContext == null && mContentView != null) {
440 mContext = mContentView.getContext();
443 if (mWindowManager == null && mContentView != null) {
866 if (isShowing() || mContentView == null) {
943 if (isShowing() || mContentView == null) {
1010 if (mContentView == null || mContext == null || mWindowManager == null) {
1016 final ViewGroup.LayoutParams layoutParams = mContentView
[all...]
H A DEditor.java2061 mContentView = linearLayout;
2062 mContentView.setBackgroundResource(
2075 mContentView.addView(mDeleteTextView);
2217 protected ViewGroup mContentView; field in class:Editor.PinnedPopupWindow
2237 mContentView.setLayoutParams(wrapContent);
2239 mPopupWindow.setContentView(mContentView);
2253 mContentView.measure(
2263 * This method assumes that mContentView has properly been measured from its content. */
2266 final int width = mContentView.getMeasuredWidth();
2284 final int width = mContentView
[all...]
/frameworks/base/core/java/com/android/internal/app/
H A DWindowDecorActionBar.java84 private View mContentView; field in class:WindowDecorActionBar
126 if (mContentAnimations && mContentView != null) {
127 mContentView.setTranslationY(0);
167 mContentView = decor.findViewById(android.R.id.content);
775 if (mContentAnimations && mContentView != null) {
776 b.with(ObjectAnimator.ofFloat(mContentView, View.TRANSLATION_Y,
800 if (mContentAnimations && mContentView != null) {
801 mContentView.setTranslationY(0);
834 if (mContentAnimations && mContentView != null) {
835 b.with(ObjectAnimator.ofFloat(mContentView, Vie
[all...]
/frameworks/support/v7/appcompat/src/android/support/v7/internal/app/
H A DWindowDecorActionBar.java94 private View mContentView; field in class:WindowDecorActionBar
138 if (mContentAnimations && mContentView != null) {
139 ViewCompat.setTranslationY(mContentView, 0f);
178 mContentView = decor.findViewById(android.R.id.content);
786 if (mContentAnimations && mContentView != null) {
787 ViewCompat.setTranslationY(mContentView, startingY);
788 anim.play(ViewCompat.animate(mContentView).translationY(0f));
811 if (mContentAnimations && mContentView != null) {
812 ViewCompat.setTranslationY(mContentView, 0);
845 if (mContentAnimations && mContentView !
[all...]
/frameworks/base/core/java/android/app/
H A DNotification.java1856 private RemoteViews mContentView; field in class:Notification.Builder
2127 mContentView = views;
2890 if (mContentView != null) {
2891 return mContentView;
3303 mContentView = n.contentView;

Completed in 256 milliseconds