public static ShapeDrawable createUserDrawable(String color) {
ShapeDrawable drawable = new ShapeDrawable();
drawable.setBounds(0, 0, 10, 20);
float radius = 4;
float[] radii = new ...
↧