Home
last modified time | relevance | path

Searched refs:decor (Results 1 – 3 of 3) sorted by relevance

/cts/tests/tests/view/src/android/view/cts/
DWindowTest.java300 View decor = mWindow.getDecorView(); in testDecorView() local
301 assertNotNull(decor); in testDecorView()
302 verifyDecorView(decor); in testDecorView()
304 decor = mWindow.peekDecorView(); in testDecorView()
305 if (decor != null) { in testDecorView()
306 verifyDecorView(decor); in testDecorView()
310 private void verifyDecorView(View decor) { in verifyDecorView() argument
315 assertTrue(decor.getWidth() >= screenWidth); in verifyDecorView()
316 assertTrue(decor.getHeight() >= screenHeight); in verifyDecorView()
317 assertTrue(decor.getContext() instanceof ContextThemeWrapper); in verifyDecorView()
[all …]
/cts/tests/app/src/android/app/cts/
DDialogTest.java188 final View decor = d.getWindow().getDecorView(); in testShow() local
197 assertEquals(View.GONE, decor.getVisibility()); in testShow()
207 assertEquals(View.VISIBLE, decor.getVisibility()); in testShow()
/cts/tests/tests/animation/src/android/animation/cts/
DObjectAnimatorTest.java855 final View decor = mActivity.getWindow().getDecorView(); in testCachedValues() local
856 decor.postOnAnimation(new Runnable() { in testCachedValues()
861 decor.postOnAnimation(this); in testCachedValues()