Home
last modified time | relevance | path

Searched refs:mContentView (Results 1 – 12 of 12) sorted by relevance

/frameworks/base/tests/VoiceInteraction/src/com/android/test/voiceinteraction/
DMainInteractionSession.java43 View mContentView; field in MainInteractionSession
123 mContentView = getLayoutInflater().inflate(R.layout.voice_interaction_session, null); in onCreateContentView()
124 mAssistVisualizer = (AssistVisualizer)mContentView.findViewById(R.id.assist_visualizer); in onCreateContentView()
128 mTopContent = mContentView.findViewById(R.id.top_content); in onCreateContentView()
129 mBottomContent = mContentView.findViewById(R.id.bottom_content); in onCreateContentView()
130 mText = (TextView)mContentView.findViewById(R.id.text); in onCreateContentView()
131 mTreeButton = (Button)mContentView.findViewById(R.id.do_tree); in onCreateContentView()
133 mTextButton = (Button)mContentView.findViewById(R.id.do_text); in onCreateContentView()
135 mStartButton = (Button)mContentView.findViewById(R.id.start); in onCreateContentView()
137 mScreenshot = (ImageView)mContentView.findViewById(R.id.screenshot); in onCreateContentView()
[all …]
/frameworks/base/core/java/com/android/internal/view/
DTooltipPopup.java35 private final View mContentView; field in TooltipPopup
46 mContentView = LayoutInflater.from(mContext).inflate( in TooltipPopup()
48 mMessageView = (TextView) mContentView.findViewById( in TooltipPopup()
74 wm.addView(mContentView, mLayoutParams); in show()
83 wm.removeView(mContentView); in hide()
87 return mContentView; in getContentView()
91 return mContentView.getParent() != null; in isShowing()
148 mContentView.measure(spec, spec); in computePosition()
149 final int tooltipHeight = mContentView.getMeasuredHeight(); in computePosition()
/frameworks/base/core/java/android/hardware/biometrics/
DPromptInfo.java44 @Nullable private PromptContentViewParcelable mContentView; field in PromptInfo
75 mContentView = in.readParcelable(PromptContentViewParcelable.class.getClassLoader(), in PromptInfo()
123 dest.writeParcelable(mContentView, 0); in writeToParcel()
196 } else if (mContentView != null && isContentViewMoreOptionsButtonUsed()) { in requiresAdvancedPermission()
213 return Flags.customBiometricPrompt() && mContentView != null in isContentViewMoreOptionsButtonUsed()
214 && mContentView instanceof PromptContentViewWithMoreOptionsButton; in isContentViewMoreOptionsButtonUsed()
258 mContentView = (PromptContentViewParcelable) view; in setContentView()
387 return mContentView; in getContentView()
/frameworks/base/packages/SettingsLib/ProfileSelector/src/com/android/settingslib/widget/
DProfileSelectFragment.java109 private ViewGroup mContentView; field in ProfileSelectFragment
119 mContentView = (ViewGroup) inflater.inflate(R.layout.tab_fragment, container, false); in onCreateView()
128 final View tabContainer = mContentView.findViewById(R.id.tab_container); in onCreateView()
140 return mContentView; in onCreateView()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/row/
DActivatableNotificationViewTest.kt40 private val mContentView: View = mock() constant in com.android.systemui.statusbar.notification.row.ActivatableNotificationViewTest
55 return mContentView in setUp()
/frameworks/base/core/java/android/widget/
DPopupWindow.java173 private View mContentView; field in PopupWindow
662 return mContentView; in getContentView()
681 mContentView = contentView; in setContentView()
683 if (mContext == null && mContentView != null) { in setContentView()
684 mContext = mContentView.getContext(); in setContentView()
687 if (mWindowManager == null && mContentView != null) { in setContentView()
1328 if (isShowing() || mContentView == null) { in showAtLocation()
1477 if (mContentView == null || mContext == null || mWindowManager == null) { in preparePopup()
1495 mBackgroundView = createBackgroundView(mContentView); in preparePopup()
1498 mBackgroundView = mContentView; in preparePopup()
[all …]
DEditor.java3610 mContentView = linearLayout; in initContentView()
3611 mContentView.setBackgroundResource( in initContentView()
3624 mContentView.addView(mDeleteTextView); in initContentView()
3781 protected ViewGroup mContentView; field in Editor.PinnedPopupWindow
3811 mContentView.setLayoutParams(wrapContent); in PinnedPopupWindow()
3813 mPopupWindow.setContentView(mContentView); in PinnedPopupWindow()
3827 mContentView.measure( in measureContent()
3840 final int width = mContentView.getMeasuredWidth(); in computeLocalPosition()
3862 final int width = mContentView.getMeasuredWidth(); in updatePosition()
4140 mContentView = (ViewGroup) inflater.inflate( in initContentView()
[all …]
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/ui/
DPrintPreviewController.java57 private final PrintContentView mContentView; field in PrintPreviewController
84 mContentView = (PrintContentView) activity.findViewById(R.id.options_content); in PrintPreviewController()
96 return mContentView.isOptionsOpened(); in isOptionsOpened()
100 mContentView.closeOptions(); in closeOptions()
/frameworks/base/core/java/com/android/internal/app/
DWindowDecorActionBar.java87 private View mContentView; field in WindowDecorActionBar
134 if (mContentAnimations && mContentView != null) {
135 mContentView.setTranslationY(0);
175 mContentView = decor.findViewById(android.R.id.content); in WindowDecorActionBar()
786 if (mContentAnimations && mContentView != null) { in doShow()
787 b.with(ObjectAnimator.ofFloat(mContentView, View.TRANSLATION_Y, in doShow()
811 if (mContentAnimations && mContentView != null) { in doShow()
812 mContentView.setTranslationY(0); in doShow()
845 if (mContentAnimations && mContentView != null) { in doHide()
846 b.with(ObjectAnimator.ofFloat(mContentView, View.TRANSLATION_Y, in doHide()
/frameworks/base/services/autofill/java/com/android/server/autofill/ui/
DFillUi.java713 private final View mContentView; field in AnchoredWindow
725 mContentView = contentView; in AnchoredWindow()
741 params.accessibilityTitle = mContentView.getContext() in show()
743 mWm.addView(mContentView, params); in show()
749 mWm.updateViewLayout(mContentView, params); in show()
773 mWm.removeView(mContentView); in hide()
832 pw.print(prefix2); pw.print("view: "); pw.println(mWindow.mContentView); in dump()
837 if (mWindow.mContentView == null) { in dump()
840 final int[] coordinates = mWindow.mContentView.getLocationOnScreen(); in dump()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
DRemoteInputView.java124 private LinearLayout mContentView; field in RemoteInputView
272 mContentView = findViewById(R.id.remote_input_content); in onFinishInflate()
273 mContentView.setBackground(mContentBackground); in onFinishInflate()
900 int verticalBoundOffset = (int) ((1f - scaleY) * 0.5f * mContentView.getHeight()); in setFocusAnimationScaleY()
901 Rect contentBackgroundBounds = new Rect(0, verticalBoundOffset, mContentView.getWidth(), in setFocusAnimationScaleY()
902 mContentView.getHeight() - verticalBoundOffset); in setFocusAnimationScaleY()
904 mContentView.setBackground(mContentBackground); in setFocusAnimationScaleY()
/frameworks/base/boot/hiddenapi/
Dhiddenapi-max-target-o.txt66341 Landroid/widget/Editor$PinnedPopupWindow;->mContentView:Landroid/view/ViewGroup;
85601 Lcom/android/internal/view/TooltipPopup;->mContentView:Landroid/view/View;