Searched refs:bitmapDrawable (Results 1 – 4 of 4) sorted by relevance
/cts/tests/tests/graphics/src/android/graphics/drawable/cts/ |
D | BitmapDrawableTest.java | 62 BitmapDrawable bitmapDrawable = new BitmapDrawable(); in testConstructor() local 63 assertNotNull(bitmapDrawable.getPaint()); in testConstructor() 65 bitmapDrawable.getPaint().getFlags()); in testConstructor() 66 assertNull(bitmapDrawable.getBitmap()); in testConstructor() 69 bitmapDrawable = new BitmapDrawable(bitmap); in testConstructor() 70 assertNotNull(bitmapDrawable.getPaint()); in testConstructor() 72 bitmapDrawable.getPaint().getFlags()); in testConstructor() 73 assertEquals(bitmap, bitmapDrawable.getBitmap()); in testConstructor() 97 BitmapDrawable bitmapDrawable = new BitmapDrawable(source); in testAccessGravity() local 99 assertEquals(Gravity.FILL, bitmapDrawable.getGravity()); in testAccessGravity() [all …]
|
D | ThemedDrawableTest.java | 152 BitmapDrawable bitmapDrawable = (BitmapDrawable) d.getDrawable(0); in testLayerDrawable() local 153 internalTestBitmapDrawable(bitmapDrawable); in testLayerDrawable()
|
D | LayerDrawableTest.java | 50 Drawable bitmapDrawable = new BitmapDrawable(); in testConstructor() local 52 Drawable[] array = new Drawable[] { bitmapDrawable, colorDrawable }; in testConstructor() 55 assertSame(bitmapDrawable, layerDrawable.getDrawable(0)); in testConstructor() 125 Drawable bitmapDrawable = new BitmapDrawable(); in testFindDrawableByLayerId() local 127 Drawable[] array = new Drawable[] { bitmapDrawable, colorDrawable }; in testFindDrawableByLayerId() 132 assertSame(bitmapDrawable, layerDrawable.findDrawableByLayerId(10)); in testFindDrawableByLayerId() 138 assertSame(bitmapDrawable, layerDrawable.findDrawableByLayerId(Integer.MIN_VALUE)); in testFindDrawableByLayerId() 207 Drawable bitmapDrawable = new BitmapDrawable(); in testAccessDrawable() local 209 Drawable[] array = new Drawable[] { bitmapDrawable, colorDrawable }; in testAccessDrawable() 211 assertSame(bitmapDrawable, layerDrawable.getDrawable(0)); in testAccessDrawable() [all …]
|
/cts/tests/tests/text/src/android/text/style/cts/ |
D | ImageSpanTest.java | 93 BitmapDrawable bitmapDrawable = (BitmapDrawable) drawable; in testGetDrawable() local 96 WidgetTestUtils.assertEquals(bitmapDrawable.getBitmap(), resultDrawable.getBitmap()); in testGetDrawable()
|