summaryrefslogtreecommitdiff
path: root/data/res/values/attrs.xml
diff options
context:
space:
mode:
Diffstat (limited to 'data/res/values/attrs.xml')
-rw-r--r--data/res/values/attrs.xml16
1 files changed, 12 insertions, 4 deletions
diff --git a/data/res/values/attrs.xml b/data/res/values/attrs.xml
index 438d1fb0..12fc291a 100644
--- a/data/res/values/attrs.xml
+++ b/data/res/values/attrs.xml
@@ -308,6 +308,10 @@
null so it will not be drawn.
</ul> -->
<attr name="windowBackground" format="reference" />
+ <!-- Drawable to draw selectively within the inset areas when the windowBackground
+ has been set to null. This protects against seeing visual garbage in the
+ surface when the app has not drawn any content into this area. -->
+ <attr name="windowBackgroundFallback" format="reference" />
<!-- Drawable to use as a frame around the window. -->
<attr name="windowFrame" format="reference" />
<!-- Flag indicating whether there should be no title on this window. -->
@@ -1772,6 +1776,7 @@
<!-- The set of attributes that describe a Windows's theme. -->
<declare-styleable name="Window">
<attr name="windowBackground" />
+ <attr name="windowBackgroundFallback" />
<attr name="windowContentOverlay" />
<attr name="windowFrame" />
<attr name="windowNoTitle" />
@@ -3454,8 +3459,6 @@
<!-- @hide The alpha value (0-255) set on the ImageView's drawable. Equivalent
to calling ImageView.setAlpha(int), not the same as View.setAlpha(float). -->
<attr name="drawableAlpha" format="integer" />
- <!-- Tint to apply to the image. -->
- <attr name="tint" />
<!-- Blending mode used to apply the image tint. -->
<attr name="tintMode" />
</declare-styleable>
@@ -5271,11 +5274,16 @@
<attr name="viewportWidth" format="float"/>
<!-- The height of the canvas the drawing is on. -->
<attr name="viewportHeight" format="float"/>
+ <!-- The name of this vector drawable -->
+ <attr name="name" />
+ <!-- The opacity of the whole vector drawable, as a value between 0
+ (completely transparent) and 1 (completely opaque). -->
+ <attr name="alpha" />
</declare-styleable>
<!-- Defines the group used in VectorDrawables. -->
<declare-styleable name="VectorDrawableGroup">
- <!-- The Name of this group -->
+ <!-- The name of this group -->
<attr name="name" />
<!-- The amount to rotate the group -->
<attr name="rotation" />
@@ -5295,7 +5303,7 @@
<!-- Defines the path used in VectorDrawables. -->
<declare-styleable name="VectorDrawablePath">
- <!-- The Name of this path -->
+ <!-- The name of this path -->
<attr name="name" />
<!-- The width a path stroke -->
<attr name="strokeWidth" format="float" />