Home
last modified time | relevance | path

Searched refs:shape (Results 1 – 14 of 14) sorted by relevance

/sdk/assetstudio/tests/src/com/android/assetstudiolib/
DNotificationIconGeneratorTest.java26 GraphicGenerator.Shape shape, int minSdk, String folderName, in checkGraphic() argument
29 options.shape = shape; in checkGraphic()
36 private void checkGraphic(String baseName, GraphicGenerator.Shape shape) throws IOException { in checkGraphic() argument
37 checkGraphic(baseName, shape, 1, "notification", 12); in checkGraphic()
DLauncherIconGeneratorTest.java26 GraphicGenerator.Shape shape, GraphicGenerator.Style style, in checkGraphic() argument
29 options.shape = shape; in checkGraphic()
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/
Ddrawable2-expected-completion52.txt2 <corners /> : Describes the corners for the rectangle shape of a GradientDrawable.
3 <gradient /> : Used to describe the gradient used to fill the shape of a GradientDrawable.
5 <size /> : Used to specify the size of the shape for GradientDrawable.
6 <solid /> : Used to fill the shape of GradientDrawable with a solid color.
Ddrawable1-expected-completion50.txt12 <shape ></shape> : Drawable used to render a geometric shape, with a gradient or a solid color.
Ddrawable1-expected-completion47.txt12 <shape ></shape> : Drawable used to render a geometric shape, with a gradient or a solid color.
Ddrawable2-expected-completion51.txt4 android:shape : Indicates what shape to fill with a gradient. [enum]
/sdk/assetstudio/src/com/android/assetstudiolib/
DLauncherIconGenerator.java44 String shape = launcherOptions.shape.id; in generate() local
48 if (launcherOptions.shape != Shape.NONE) { in generate()
50 + shape + "/" + density + "/back.png"); in generate()
52 + shape + "/" + density + "/" + launcherOptions.style.id + ".png"); in generate()
54 + shape + "/" + density + "/mask.png"); in generate()
134 public Shape shape = Shape.SQUARE; field in LauncherIconGenerator.LauncherOptions
DNotificationIconGenerator.java68 + notificationOptions.shape.id + '/' + in generate()
143 public Shape shape = Shape.SQUARE;
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
DIconFactory.java138 public Image getIcon(String osName, int color, int shape) { in getIcon() argument
139 String key = Character.toString((char) shape) + Integer.toString(color) + osName; in getIcon()
142 ImageDescriptor id = getImageDescriptor(osName, color, shape); in getIcon()
179 public ImageDescriptor getImageDescriptor(String osName, int color, int shape) { in getImageDescriptor() argument
180 String key = Character.toString((char) shape) + Integer.toString(color) + osName; in getImageDescriptor()
188 id = new LetterImageDescriptor(osName.charAt(0), color, shape); in getImageDescriptor()
337 public LetterImageDescriptor(char letter, int color, int shape) { in LetterImageDescriptor() argument
340 mShape = shape; in LetterImageDescriptor()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/assetstudio/
DConfigureAssetSetPage.java525 if (mValues.shape == Shape.NONE && mValues.type == AssetType.NOTIFICATION) { in setVisible()
526 mValues.shape = Shape.SQUARE; in setVisible()
529 setShape(mValues.shape); in setVisible()
713 mValues.shape = GraphicGenerator.Shape.SQUARE; in widgetSelected()
714 setShape(mValues.shape); in widgetSelected()
716 mValues.shape = GraphicGenerator.Shape.CIRCLE; in widgetSelected()
717 setShape(mValues.shape); in widgetSelected()
719 mValues.shape = GraphicGenerator.Shape.NONE; in widgetSelected()
720 setShape(mValues.shape); in widgetSelected()
897 private void setShape(GraphicGenerator.Shape shape) { in setShape() argument
[all …]
DCreateAssetSetWizardState.java85 public Shape shape = Shape.SQUARE; field in CreateAssetSetWizardState
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/descriptors/
DElementDescriptor.java256 int shape = hasChildren() ? IconFactory.SHAPE_RECT in getCustomizedIcon() local
267 Image icon = factory.getIcon(name, color, shape); in getCustomizedIcon()
289 int shape = hasChildren() ? IconFactory.SHAPE_RECT : IconFactory.SHAPE_CIRCLE; in getImageDescriptor() local
290 ImageDescriptor id = factory.getImageDescriptor(mXmlName, color, shape); in getImageDescriptor()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
DTemplateMetadata.java241 for (GraphicGenerator.Shape shape : GraphicGenerator.Shape.values()) { in getIconState()
242 if (shapeString.equals(shape.name())) { in getIconState()
243 mIconState.shape = shape; in getIconState()
DNewProjectWizard.java136 iconState.shape = GraphicGenerator.Shape.NONE; in getNextPage()