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

  /cts/tests/tests/graphics/src/android/graphics/drawable/cts/
ShapeDrawableTest.java 32 import android.graphics.drawable.ShapeDrawable;
34 import android.graphics.drawable.ShapeDrawable.ShaderFactory;
45 new ShapeDrawable();
47 new ShapeDrawable(null);
49 new ShapeDrawable(new RectShape());
53 ShapeDrawable shapeDrawable = new ShapeDrawable();
56 shapeDrawable.draw(null);
63 ShapeDrawable shapeDrawable = new ShapeDrawable()
    [all...]
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
ShapeDrawableTest.java 4 import android.graphics.drawable.ShapeDrawable;
17 ShapeDrawable shapeDrawable = new ShapeDrawable();
18 Paint paint = shapeDrawable.getPaint();
20 assertThat(shapeDrawable.getPaint(), is(paint));
  /frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
ProgressBarICS.java 33 import android.graphics.drawable.ShapeDrawable;
188 final ShapeDrawable shapeDrawable = new ShapeDrawable(getDrawableShape());
192 shapeDrawable.getPaint().setShader(bitmapShader);
194 return (clip) ? new ClipDrawable(shapeDrawable, Gravity.LEFT,
195 ClipDrawable.HORIZONTAL) : shapeDrawable;
  /frameworks/base/core/java/android/widget/
ProgressBar.java 34 import android.graphics.drawable.ShapeDrawable;
353 final ShapeDrawable shapeDrawable = new ShapeDrawable(getDrawableShape());
357 shapeDrawable.getPaint().setShader(bitmapShader);
359 return (clip) ? new ClipDrawable(shapeDrawable, Gravity.LEFT,
360 ClipDrawable.HORIZONTAL) : shapeDrawable;
    [all...]
  /packages/apps/MusicFX/src/com/android/musicfx/seekbar/
ProgressBar.java 34 import android.graphics.drawable.ShapeDrawable;
347 final ShapeDrawable shapeDrawable = new ShapeDrawable(getDrawableShape());
351 shapeDrawable.getPaint().setShader(bitmapShader);
353 return (clip) ? new ClipDrawable(shapeDrawable, Gravity.LEFT,
354 ClipDrawable.HORIZONTAL) : shapeDrawable;
    [all...]

Completed in 238 milliseconds