您的位置:首页 > 移动开发 > Android开发

android shape 基本语法

2020-02-17 01:14 369 查看

android shape  基本语法

语法:(摘抄自点击打开链接

[code]<span style="color: rgb(0, 112, 0);"><?xml version="1.0" encoding="utf-8"?>
<shape
</span><span style="color:#993399;">xmlns:android</span><span style="color:#007000;">="http://schemas.android.com/apk/res/android"
</span><span style="color:#993399;">android:shape</span><span style="color:#007000;">=["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></span>
 

<shape>根元素

xmlns:android

String.定义XML的命名空间,它必须是

"http://schemas.android.com/apk/res/android"
.

android:shape

Keyword.定义shape在形状,可选值是:

Value Desciption
"rectangle"
长方形(默认形状)
"oval"
椭圆形(宽高一样就是圆形)
"line"
线条
"ring"
圆环形

以下属性只有当 android:shape="ring" 时才有效:

android:innerRadiusDimension.定义环形内部空白部分的半径,值必须是一个尺寸(dp)值   android:innerRadiusRatio

Float.定义环形内部空白部分的半径,如果android:innerRadiusTatio="5",那么就用环空白部分的半径就是环的宽度除以5,默认为9如果定义了android:innerRadius则此条属性无效。

     android:thickness

Dimension.环的厚度。值必须是一个尺寸(dp)值

     android:thicknessRatio

Float.定义环的厚度。如果android:thicknessRatio="2",那么环的厚度就是环的宽度除以2。默认为3

如果定义了android:thickness则此条属性无效

     android:useLevel

Boolean."true" 使用LevelListDrawable实例,"false"则不使用

1.solid: 填充

  android:color

Color.指定填充的颜色

 
 

2.gradient: 渐变

  android:type

Integer.渐变类型,分别为(linear|sweep|radial)三种渐变类型(默认为linear)

  android:startColor 

Color.渐变开始颜色

  android:centerColor

Color.渐变中间颜色

  android:endColor 

Color.渐变结束颜色

  android:centerX 

Float.对应渐变中心的X偏移位置。(0 - 1.0)

  android:centerY 

Float.对应渐变中心的Y偏移位置。(0 - 1.0)

  android:angle

Integer.渐变角度。0度是从左到右;90度是从下到上。它必须是45的整数倍,默认为0

  android:gradientRadius

Float.径向渐变的半径。只有当android:type=“radial”才有效

  android:useLevel

Boolean.是否使用LeveListDrawable对象。"true" or "false"

3.stroke: 描边

  android:width

Dimension.线的厚度,一个尺寸值(dp)或dimension resource

  android:color

Color.线的颜色,一个颜色(#ff56ff56)或color resource,默认为透明色

  android:dashGap

Dimension.虚线之间的间隔距离,0为实线

  android:dashWidth

Dimension.单个虚线的宽度,0为实线

4.corners: 圆角,只有当android:shape="rectangle"才有效

  android:radius

Dimension.设置所有角的弧度,一个尺寸值(dp)或dimension resource。如果设置了下面的四个属性中的一个那这个属性将失去效果。

  android:topLeftRadius

Dimension.左上角的弧度,一个尺寸值(dp)或dimension resource

  android:topRightRadius

Dimension.右上角的弧度,一个尺寸值(dp)或dimension resource

  android:bottomLeftRadius

Dimension.左下角的弧度,一个尺寸值(dp)或dimension resource

  android:bottomRightRadius

Dimension.右下角的弧度,一个尺寸值(dp)或dimension resource

5.padding: 内边距,即内容与边的距离

  android:left

Dimension.左边距,一个尺寸值(dp)或dimension resource

  android:top

Dimension.上边距,一个尺寸值(dp)或dimension resource

  android:right

Dimension.右边距,一个尺寸值(dp)或dimension resource

  android:bottom

Dimension.下边距,一个尺寸值(dp)或dimension resource

6.size: 设置shape在size

  android:width

Dimension.shape的宽度,一个尺寸值(dp)或dimension resource

  android:height

Dimension.shape的高度,一个尺寸值(dp)或dimension resource



 

 

 

 

Value Desciption
"rectangle"
A rectangle (长方形)that fills the containing View. This is the default shape.(这个是默认的形状)
"oval"
An oval (椭圆形)shape that fits the dimensions of the containing View.
"line"
A horizontalline that spans the width of the containing View. This shape requires the 
<stroke>
 element to define the width of the line.
"ring"
A ring shape.
  • 点赞 1
  • 收藏
  • 分享
  • 1aa70
  • 文章举报
THBX 发布了0 篇原创文章 · 获赞 1 · 访问量 87 私信 关注
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: