HomeSort by relevance Sort by last modified time
    Searched refs:gradientDrawable (Results 1 - 4 of 4) sorted by null

  /cts/tests/tests/graphics/src/android/graphics/drawable/cts/
GradientDrawableTest.java 40 import android.graphics.drawable.GradientDrawable;
41 import android.graphics.drawable.GradientDrawable.Orientation;
73 new GradientDrawable();
74 new GradientDrawable(GradientDrawable.Orientation.BL_TR, color);
75 new GradientDrawable(null, null);
80 GradientDrawable gradientDrawable = new GradientDrawable();
82 PixelFormat.TRANSLUCENT, gradientDrawable.getOpacity())
    [all...]
DefaultFocusHighlightTest.java 38 import android.graphics.drawable.GradientDrawable;
318 static GradientDrawable createGradientDrawable() {
319 GradientDrawable gradientDrawable = new GradientDrawable();
320 gradientDrawable.setColor(A_COLOR);
321 gradientDrawable.setCornerRadius(10f);
322 return gradientDrawable;
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowGradientDrawableTest.java 6 import android.graphics.drawable.GradientDrawable;
15 GradientDrawable gradientDrawable = new GradientDrawable();
16 ShadowGradientDrawable shadowGradientDrawable = shadowOf(gradientDrawable);
18 gradientDrawable.setColor(color);
  /external/setupcompat/main/java/com/google/android/setupcompat/template/
FooterBarMixin.java 30 import android.graphics.drawable.GradientDrawable;
629 GradientDrawable gradientDrawable = getGradientDrawable(button);
630 if (gradientDrawable != null) {
631 gradientDrawable.setCornerRadius(radius);
739 GradientDrawable getGradientDrawable(Button button) {
747 return (GradientDrawable) layerDrawable.getDrawable(0);
750 return (GradientDrawable) insetDrawable.getDrawable();

Completed in 2236 milliseconds