1. BitmapDrawable
<bitmap xmlns:android="http://schemas.android.com/apk/res/android"
android:alpha="10"
android:antialias="true"
android:autoMirrored="true"
android:dither="true"
android:filter="false"
android:gravity="center"
android:mipMap="true"
android:src="@drawable/logo"
android:tileMode="repeat"
android:tileModeX="repeat"
android:tileModeY="mirror"
android:tint="@color/colorAccent"
android:tintMode="screen">
</bitmap>
- src:图片资源id
- alpha:设置图片的透明度,取值范围为0.0~1.0之间,0.0为全透明,1.0为全不透明,API Level最低要求是11,即Android 3.0
- antialias:抗锯齿
- autoMirrored:设置图片是否需要镜像反转,当布局方向是RTL,即从右到左布局时才有用,API Level 19(Android 4.4)才添加的属性
- dither:防抖动
- filter:设置是否允许对图片进行滤波,对图片进行收缩或者延展使用滤波可以获得平滑的外观效果
- gravity:对齐方式
- mipMap:纹理映射
- =============================
- tileMode:平铺方式
平铺(repeat),镜像(mirror),扩展像素(clamp)
- tileModeX:x方向平铺方式
- tileModeY:y方向平铺方式
- ==============================
- tint:着色
- tintMode:着色方式,5.0以后才有
2. NinePatchDrawable
<nine-patch xmlns:android="http://schemas.android.com/apk/res/android"
android:src="@drawable/logo">
</nine-patch>
3. ShapeDrawable
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:dither="true"
android:innerRadius="50dp"
android:innerRadiusRatio="9"
android:shape="ring"
android:thickness="10dp"
android:thicknessRatio="3"
android:tint="@color/colorAccent"
android:tintMode="add"
android:useLevel="false"
android:visible="true">
<stroke
android:width="5dp"
android:color="@color/colorPrimaryDark" />
</shape>
- shape:图形形状 rectangle(矩形)、oval(椭圆)、line(横线)、ring(环)
- userLeavel:一般为false,否则没有效果
- visible:是否显示
- dither:抖动
- ================
- tint|tintMode 着色
- ================
- innerRadius:内环大小
- thickness:环的厚度(内环+厚度=环的直径)
- innerRadiusRatio:内半径占整个Drawable宽度的比例,默认为9
- thicknessRatio:厚度占整个Drawable宽度的比例
- =============================
- shape必须通过stroke(边框)或者solid(实心)或者gradient(渐变)指定颜色
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:dither="true"
android:shape="line"
android:useLevel="false">
<stroke
android:width="2dp"
android:color="@color/colorAccent" />
</shape>
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid android:color="@color/colorAccent"></solid>
<stroke
android:width="5dp"
android:color="@color/colorPrimaryDark"
android:dashGap="3dp"
android:dashWidth="3dp"></stroke>
<corners
android:bottomLeftRadius="5dp"
android:bottomRightRadius="5dp"
android:radius="10dp"
android:topLeftRadius="5dp"
android:topRightRadius="5dp" />
<gradient
android:angle="180"
android:centerColor="@color/colorPrimary"
android:centerX="0.5"
android:centerY="0.5"
android:endColor="@color/colorPrimaryDark"
android:gradientRadius="10dp"
android:startColor="@color/colorAccent"
android:type="linear"
android:useLevel="true" />
<padding
android:bottom="5dp"
android:left="5dp"
android:right="5dp"
android:top="5dp" />
<size
android:width="100dp"
android:height="100dp" />
</shape>
- solid: 实心颜色
- stroke:边框
- width:边框宽度
- color:边框颜色
- dashGap:虚线间隔
- dashWidth:虚线宽度
- corners:边角
- gradient:渐变。渐变和solid是互斥的,solid是纯色,gradient是渐变。
- angle:渐变的角度,默认为0,其值必须是45的倍数,0从左到右,90表示从下到上,180表示从右到左,顺时针顺序。
- centerX,centerY:渐变的中心点
- startColor,centerColor,endColor
- type:渐变的类别,line(线性)/radial(径向)/sweep(扫描)
- gradientRadius:渐变半径,仅当type为径向时有效
- padding:不是shape的padding,而是包含它的View的padding。
- size:这个表示shape的固有大小,但不是shape最终显示大小。shape没有宽高概念,作为View的背景会自适应View的宽高,对于图片Drawable,它的固有宽高就是图片尺寸,对于shapeDrawable,他没有固定宽高的概念,这个时候getIntrinsicWidht和getIntrinsicHeight会返回-1,但如果通过size标签来指定宽高信息,那么这个shapeDrawable就有固定宽高了,但作为View的背景,还会被拉伸或者缩小到Veiw的大小。
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="oval">
<solid android:color="@color/colorAccent" />
<size
android:width="100dp"
android:height="100dp" />
</shape>
4. LayerDrawable
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape android:shape="rectangle">
<solid android:color="#456789" />
</shape>
</item>
<item
android:bottom="3dp"
android:left="3dp"
android:right="3dp">
<shape>
<solid android:color="#ffffff" />
</shape>
</item>
<item android:bottom="16dp">
<shape>
<solid android:color="#ffffff" />
</shape>
</item>
</layer-list>
- layer-list可以包含item,item可以包含shape
- bottom,left,top,right等可以理解为padding属性
- layer-list可以理解为frameLayout
- item可以有自己的drawable属性
5. StateListDrawable
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/shape_oval"
android:state_checked="true"
android:state_enabled="true"
android:state_first="true"
android:state_last="true"
android:state_middle="true"
android:state_pressed="true"
android:state_selected="true" />
<item android:drawable="@drawable/shape_ring" />
</selector>
- state_checked:view是否checked
- state_enabled: View是否可以
- state_first: View是否处于开始状态
- state_last|state_middle: View是否处于中间状态|是否处于结束状态
- state_pressed: View是否被按下
- state_selected: View是否被选中
6. LevelListDrawable
<level-list xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:drawable="@drawable/shape_oval"
android:maxLevel="2"
android:minLevel="2" />
<item
android:drawable="@drawable/shape_ring"
android:maxLevel="1"
android:minLevel="1" />
<item android:drawable="@drawable/shape" />
</level-list>
LevelListDrawable drawable = (LevelListDrawable) findViewById(R.id.level).getBackground();
drawable.setLevel(1);
- level-list表示一个Drawable集合,集合中每个Drawable都有一个等级的概念,等级不同,显示不同的Drawable。
- 等级在minLevel和maxLevel之间的Drawable会被显示。
- 如果level为2,而item1的maxLevel为2,而item2的minLevel为2,则maxLevel优先,显示item1.
- drawable的等级是有范围的0-10000是,0是默认值。
7. TransitionDrawable
<transition xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/shape_oval" />
<item android:drawable="@drawable/shape" />
</transition>
TransitionDrawable drawable = (TransitionDrawable) findViewById(R.id.transition).getBackground();
drawable.startTransition(5000);
- TransitionDrawable是LayerDrawable的子类,本身就支持多item。
- 它实现两个Drawable切换时的淡入淡出。
网友评论