Home
last modified time | relevance | path

Searched refs:contentView (Results 1 – 8 of 8) sorted by relevance

/cts/tests/tests/view/src/android/view/cts/
DActionModeCtsActivity.java26 public View contentView; field in ActionModeCtsActivity
32 contentView = new FrameLayout(this); in onCreate()
33 setContentView(contentView); in onCreate()
DSystemGestureExclusionRectsTest.java207 final View contentView = activity.findViewById(R.id.abslistview_root); in ignoreHiddenViewRects() local
238 contentView.setVisibility(View.INVISIBLE); in ignoreHiddenViewRects()
249 contentView.setVisibility(View.VISIBLE); in ignoreHiddenViewRects()
DActionModeTest.java89 final View view = mActivity.contentView; in testInvalidateContentRectOnFloatingCallsCallback()
/cts/tests/framework/base/windowmanager/jetpack/src/android/server/wm/jetpack/
DTestActivity.java41 final View contentView = new View(this); in onCreate() local
43 contentView.setId(mRootViewId); in onCreate()
44 setContentView(contentView); in onCreate()
/cts/tests/inputmethod/src/android/view/inputmethod/cts/
DNavigationBarColorTest.java137 final View contentView; in launchTestActivity()
149 contentView = layout; in launchTestActivity()
157 contentView = view; in launchTestActivity()
164 updateSystemUiVisibility(contentView, in launchTestActivity()
167 return contentView; in launchTestActivity()
/cts/tests/framework/base/windowmanager/src/android/server/wm/
DWindowInsetsPolicyTest.java170 View contentView = decorView.findViewById(android.R.id.content); in testNonAutomotiveFullScreenNotBlockedBySystemComponents() local
171 boolean hasFullWidth = decorView.getMeasuredWidth() == contentView.getMeasuredWidth(); in testNonAutomotiveFullScreenNotBlockedBySystemComponents()
172 boolean hasFullHeight = decorView.getMeasuredHeight() == contentView.getMeasuredHeight(); in testNonAutomotiveFullScreenNotBlockedBySystemComponents()
/cts/tests/tests/widget/src/android/widget/cts/
DPopupWindowTest.java147 TextView contentView = new TextView(mActivity); in testSize() local
148 mPopupWindow = new PopupWindow(contentView); in testSize()
149 assertSame(contentView, mPopupWindow.getContentView()); in testSize()
151 mPopupWindow = new PopupWindow(contentView, 0, 0); in testSize()
154 assertSame(contentView, mPopupWindow.getContentView()); in testSize()
156 mPopupWindow = new PopupWindow(contentView, 50, 50); in testSize()
159 assertSame(contentView, mPopupWindow.getContentView()); in testSize()
161 mPopupWindow = new PopupWindow(contentView, -1, -1); in testSize()
164 assertSame(contentView, mPopupWindow.getContentView()); in testSize()
166 mPopupWindow = new PopupWindow(contentView, 0, 0, true); in testSize()
[all …]
/cts/tests/app/src/android/app/cts/
DNotificationTest.java160 final RemoteViews contentView = new RemoteViews(mContext.getPackageName(),
162 mNotification.contentView = contentView;
186 assertNotNull(result.contentView);
229 mNotification.contentView = null;
234 assertNull(result.contentView);