android Shape Drawable

  • 列表内容

Shape 形状的定义 有些都少了一个< 这个 ,不知怎么回事,多了一个这个,显示不了

形状的定义shape
xmlns:android=”http://schemas.android.com/apk/res/android”
android:shape=[“rectangle” | “oval” | “line” | “ring”] >
corners
android:radius=”integer”
android:topLeftRadius=”integer”
android:topRightRadius=”integer”
android:bottomLeftRadius=”integer”
android:bottomRightRadius=”integer” />
gradient
android:angle=”integer”
android:centerX=”integer”
android:centerY=”integer”
android:centerColor=”integer”
android:endColor=”color”
android:gradientRadius=”integer”
android:startColor=”color”
android:type=[“linear” | “radial” | “sweep”]
android:useLevel=[“true” | “false”] />
padding
android:left=”integer”
android:top=”integer”
android:right=”integer”
android:bottom=”integer” />
size
android:width=”integer”
android:height=”integer” />
solid
android:color=”color” />
stroke
android:width=”integer”
android:color=”color”
android:dashWidth=”integer”
android:dashGap=”integer” />
/shape>

元素:

定义这是一个GradientDrawable,必须作为根元素。
属性:
xmlns:android
String类型。必须的,定义xml文件的命名空间,必须是”http://schemas.android.com/apk/res/android“.
android:shape
关键字。定义shape的值,必须是下面的之一:
值 描述
“rectangle” 矩阵,这也是默认的shape
“oval” 椭圆
“line” 一条水平的直线。这种shape必须使用 元素来定义这条线的宽度
“ring” 圆环
下面的属性只有当 android:shape=”ring”才使用:
android:innerRadius
尺寸。 内环的半径。一个尺寸值(dip等等)或者一个尺寸资源。
android:innerRadiusRatio
Float类型。这个值表示内部环的比例,例如,如果android:innerRadiusRatio = ” 5 “,那么内部的半径等于环的宽度除以5。这个值会被android:innerRadius重写。 默认值是9。
android:thickness
尺寸。环的厚度,是一个尺寸值或尺寸的资源。
android:thicknessRatio
Float类型。厚度的比例。例如,如果android:thicknessRatio= ” 2 “,然后厚度等于环的宽度除以2。这个值是被android:innerRadius重写, 默认值是3。
android:useLevel
Boolean类型。如果用在 LevelListDrawable里,那么就是true。如果通常不出现则为false。

为Shape创建一个圆角,只有shape是rectangle时候才使用。
属性:
android:radius
Dimension。圆角的半径。会被下面每个特定的圆角属性重写。
android:topLeftRadius
Dimension。top-left 圆角的半径。
android:topRightRadius
Dimension。top-right 圆角的半径。
android:bottomLeftRadius
Dimension。 bottom-left圆角的半径。
android:bottomRightRadius
Dimension。bottom-right圆角的半径。
注意:每个圆角半径值都必须大于1,否侧就没有圆角。
下面的话不明白,我直接设置圆角为0就可以不圆了,其余的设置有圆角,一样的可行。不知道它为什么要这么讲。
(If you want specific cornersto not be rounded, a work-around is to use android:radius to set a default cornerradius greater than 1, but then override each and every corner with the values you reallywant, providing zero (“0dp”) where you don’t want rounded corners.)

指定这个shape的渐变颜色。
属性:
android:angle
Integer。渐变的角度。 0 代表从 left 到 right。90 代表bottom到 top。必须是45的倍数,默认为0
android:centerX
Float。渐变中心的相对X坐标,在0到1.0之间。
android:centerY
Float。渐变中心的相对Y坐标,在0到1.0之间。
android:centerColor
Color。可选的颜色值。基于startColor和endColor之间。
android:endColor
Color。 结束的颜色。
android:gradientRadius
Float 。渐变的半径。只有在 android:type=”radial”才使用
android:startColor
Color。开始的颜色值。
android:type
Keyword。渐变的模式,下面值之一:
值 描述
“linear” 线形渐变。这也是默认的模式
“radial” 辐射渐变。startColor即辐射中心的颜色
“sweep” 扫描线渐变。
android:useLevel
Boolean。如果在LevelListDrawable中使用,则为true


内容与视图边界的距离
属性:
android:left
Dimension。左边填充距离.
android:top
Dimension。顶部填充距离.
android:right
Dimension。右边填充距离.
android:bottom
Dimension。底部填充距离.

这个shape的大小。
属性:
android:height
Dimension。这个shape的高度。
android:width
Dimension。这个shape的宽度。
注意:默认情况下,这个shape会缩放到与他所在容器大小成正比。当你在一个ImageView中使用这个shape,你可以使用 android:scaleType=”center”来限制这种缩放。

填充这个shape的纯色
属性:
android:color
Color。颜色值,十六进制数,或者一个Color资源

这个shape使用的笔画,当android:shape=”line”的时候,必须设置改元素。
属性:
android:width
Dimension。笔画的粗细。
android:color
Color。笔画的颜色
android:dashGap
Dimension。每画一条线就间隔多少。只有当android:dashWidth也设置了才有效。
android:dashWidth
Dimension。每画一条线的长度。只有当 android:dashGap也设置了才有效。

示例:
XML file saved at res/drawable/gradient_box.xml:
?xml version=”1.0” encoding=”utf-8”?>
shape xmlns:android=”http://schemas.android.com/apk/res/android”
android:shape=”rectangle”>
gradient
android:startColor=”#FFFF0000”
android:endColor=”#80FF00FF”
android:angle=”45”/>
padding android:left=”7dp”
android:top=”7dp”
android:right=”7dp”
android:bottom=”7dp” />


This layout XML applies the shape drawable to a View:
TextView
android:background=”@drawable/gradient_box”
android:layout_height=”wrap_content”
android:layout_width=”wrap_content” />
This application code gets the shape drawable and applies it to a View:
Resources res = getResources();
Drawable shape = res. getDrawable(R.drawable.gradient_box);

TextView tv = (TextView)findViewByID(R.id.textview);
tv.setBackground(shape);

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值