Searched refs:shape (Results 1 - 10 of 10) sorted by relevance

/sdk/assetstudio/tests/src/com/android/assetstudiolib/
H A DNotificationIconGeneratorTest.java26 GraphicGenerator.Shape shape, int minSdk, String folderName,
29 options.shape = shape;
36 private void checkGraphic(String baseName, GraphicGenerator.Shape shape) throws IOException { argument
37 checkGraphic(baseName, shape, 1, "notification", 12);
25 checkGraphic(String baseName, GraphicGenerator.Shape shape, int minSdk, String folderName, int expectedCount) argument
H A DLauncherIconGeneratorTest.java26 GraphicGenerator.Shape shape, GraphicGenerator.Style style,
29 options.shape = shape;
25 checkGraphic(String baseName, GraphicGenerator.Shape shape, GraphicGenerator.Style style, boolean crop, int background, boolean isWebGraphic) argument
/sdk/assetstudio/src/com/android/assetstudiolib/
H A DLauncherIconGenerator.java44 String shape = launcherOptions.shape.id;
48 if (launcherOptions.shape != Shape.NONE) {
50 + shape + "/" + density + "/back.png");
52 + shape + "/" + density + "/" + launcherOptions.style.id + ".png");
54 + shape + "/" + density + "/mask.png");
133 /** The shape to use for the background */
134 public Shape shape = Shape.SQUARE; field in class:LauncherIconGenerator.LauncherOptions
H A DNotificationIconGenerator.java68 + notificationOptions.shape.id + '/' +
141 * The shape to use for graphics behind the icon (for {@link Version#OLDER} only)
143 public Shape shape = Shape.SQUARE; field in class:NotificationIconGenerator.NotificationOptions
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
H A DIconFactory.java135 * @param shape The shape of the icon in the automatically generated icons,
138 public Image getIcon(String osName, int color, int shape) { argument
139 String key = Character.toString((char) shape) + Integer.toString(color) + osName;
142 ImageDescriptor id = getImageDescriptor(osName, color, shape);
176 * @param shape The shape of the icon in the automatically generated icons,
179 public ImageDescriptor getImageDescriptor(String osName, int color, int shape) { argument
180 String key = Character.toString((char) shape) + Integer.toString(color) + osName;
188 id = new LetterImageDescriptor(osName.charAt(0), color, shape);
337 LetterImageDescriptor(char letter, int color, int shape) argument
[all...]
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/descriptors/
H A DElementDescriptor.java256 int shape = hasChildren() ? IconFactory.SHAPE_RECT
267 Image icon = factory.getIcon(name, color, shape);
289 int shape = hasChildren() ? IconFactory.SHAPE_RECT : IconFactory.SHAPE_CIRCLE;
290 ImageDescriptor id = factory.getImageDescriptor(mXmlName, color, shape);
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/assetstudio/
H A DConfigureAssetSetPage.java525 if (mValues.shape == Shape.NONE && mValues.type == AssetType.NOTIFICATION) {
526 mValues.shape = Shape.SQUARE;
529 setShape(mValues.shape);
713 mValues.shape = GraphicGenerator.Shape.SQUARE;
714 setShape(mValues.shape);
716 mValues.shape = GraphicGenerator.Shape.CIRCLE;
717 setShape(mValues.shape);
719 mValues.shape = GraphicGenerator.Shape.NONE;
720 setShape(mValues.shape);
897 private void setShape(GraphicGenerator.Shape shape) { argument
[all...]
H A DCreateAssetSetWizardState.java84 /** The background shape */
85 public Shape shape = Shape.SQUARE; field in class:CreateAssetSetWizardState
93 /** The background color to use for the shape (unless the shape is {@link Shape#NONE} */
96 /** The background color to use for the text or clipart (unless shape is {@link Shape#NONE} */
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
H A DTemplateMetadata.java241 for (GraphicGenerator.Shape shape : GraphicGenerator.Shape.values()) {
242 if (shapeString.equals(shape.name())) {
243 mIconState.shape = shape;
249 AdtPlugin.log(null, "Unknown shape %1$s", shapeString);
H A DNewProjectWizard.java127 // ADT 20: White icon with blue shape
128 //iconState.shape = GraphicGenerator.Shape.CIRCLE;
136 iconState.shape = GraphicGenerator.Shape.NONE;

Completed in 880 milliseconds