Searched refs:shape (Results 1 – 10 of 10) sorted by relevance
2 <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.
12 <shape ></shape> : Drawable used to render a geometric shape, with a gradient or a solid color.
4 android:shape : Indicates what shape to fill with a gradient. [enum]
138 public Image getIcon(String osName, int color, int shape) { in getIcon() argument139 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() argument180 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() argument340 mShape = shape; in LetterImageDescriptor()
256 int shape = hasChildren() ? IconFactory.SHAPE_RECT in getCustomizedIcon() local267 Image icon = factory.getIcon(name, color, shape); in getCustomizedIcon()289 int shape = hasChildren() ? IconFactory.SHAPE_RECT : IconFactory.SHAPE_CIRCLE; in getImageDescriptor() local290 ImageDescriptor id = factory.getImageDescriptor(mXmlName, color, shape); in getImageDescriptor()
524 if (mValues.shape == Shape.NONE && mValues.type == AssetType.NOTIFICATION) { in setVisible()525 mValues.shape = Shape.SQUARE; in setVisible()528 setShape(mValues.shape); in setVisible()712 mValues.shape = GraphicGenerator.Shape.SQUARE; in widgetSelected()713 setShape(mValues.shape); in widgetSelected()715 mValues.shape = GraphicGenerator.Shape.CIRCLE; in widgetSelected()716 setShape(mValues.shape); in widgetSelected()718 mValues.shape = GraphicGenerator.Shape.NONE; in widgetSelected()719 setShape(mValues.shape); in widgetSelected()896 private void setShape(GraphicGenerator.Shape shape) { in setShape() argument[all …]
85 public Shape shape = Shape.SQUARE; field in CreateAssetSetWizardState
276 for (GraphicGenerator.Shape shape : GraphicGenerator.Shape.values()) { in getIconState()277 if (shapeString.equals(shape.name())) { in getIconState()278 mIconState.shape = shape; in getIconState()
142 iconState.shape = GraphicGenerator.Shape.NONE; in getNextPage()