美文网首页Kevin Learn Android
Kevin Learn Android:shape

Kevin Learn Android:shape

作者: Kevin_小飞象 | 来源:发表于2021-11-17 08:48 被阅读0次
    每日一图.jpg

    android 的样式主要则是通过 shape、selector、layer-list、level-list、style、theme 等组合实现。shape,最基础的形状定义工具。

    一般用 shape 定义的 xml 文件存放在 drawable 目录下,项目中用到的 png 图片一般放在 xxhdpi 目录下。

    使用shape可以自定义形状,可以定义下面四种类型的形状,通过android:shape属性指定:

    • rectangle : 矩形,默认的形状,可以画出直角矩形、圆角矩形、弧形等
    • oval : 椭圆形,用得比较多的是画正圆
    • line : 线形,可以画实线和虚线
    • ring : 环形,可以画环形进度条

    rectangle

    rectangle是默认的形状,也是用得最多的形状,一些文字背景、按钮背景、控件或布局背景等,以下是一些简单的效果:


    shape.png

    实现上面的那些效果,都用到了以下这些特性:

    solid : 设置形状填充的颜色,只有android:color一个属性

    • android:color 填充的颜色

    padding: 设置内容与形状边界的内间距,可分别设置左右上下的距离

    • android:left 左内间距

    • android:right 右内间距

    • android:top 上内间距

    • android:bottom 下内间距

    gradient: 设置形状的渐变颜色,可以是线性渐变、辐射渐变、扫描性渐变

    • android:type 渐变的类型

    • linear 线性渐变,默认的渐变类型

    • radial 放射渐变,设置该项时,android:gradientRadius也必须设置

    • sweep 扫描性渐变

    • android:startColor 渐变开始的颜色

    • android:endColor 渐变结束的颜色

    • android:centerColor 渐变中间的颜色

    • android:angle 渐变的角度,线性渐变时才有效,必须是 45 的倍数,0 表示从左到右,90 表示从下到上

    • android:centerX 渐变中心的相对X坐标,放射渐变时才有效,在0.0 到 1.0 之间,默认为 0.5,表示在正中间

    • android:centerY 渐变中心的相对X坐标,放射渐变时才有效,在 0.0到1.0之间,默认为0.5,表示在正中间

    • android:gradientRadius 渐变的半径,只有渐变类型为 radial 时才使用

    • android:useLevel 如果为 true,则可在 LevelListDrawable 中使用

    corners: 设置圆角,只适用于rectangle类型,可分别设置四个角不同半径的圆角,当设置的圆角半径很大时,比如200dp,就可变成弧形边了

    • android:radius 圆角半径,会被下面每个特定的圆角属性重写

    • android:topLeftRadius 左上角的半径

    • android:topRightRadius 右上角的半径

    • android:bottomLeftRadius 左下角的半径

    • android:bottomRightRadius 右下角的半径

    stroke: 设置描边,可描成实线或虚线。

    • android:color 描边的颜色

    • android:width 描边的宽度

    • android:dashWidth 设置虚线时的横线长度

    • android:dashGap 设置虚线时的横线之间的距离

    eg:加虚线描边的矩形 bg_rectangle_with_stroke_dash.xml

    <?xml version="1.0" encoding="utf-8"?>
    <!-- android:shape指定形状类型,默认为rectangle -->
    <shape xmlns:android="http://schemas.android.com/apk/res/android"
        android:shape="rectangle">
        <!-- solid指定形状的填充色,只有android:color一个属性 -->
        <solid android:color="#2F90BD" />
        <!-- padding设置内容区域离边界的间距 -->
        <padding
            android:bottom="12dp"
            android:left="12dp"
            android:right="12dp"
            android:top="12dp" />
        <!-- corners设置圆角,只适用于rectangle -->
        <corners android:radius="200dp" />
        <!-- stroke设置描边 -->
        <stroke
            android:width="2dp"
            android:color="@android:color/darker_gray"
            android:dashGap="4dp"
            android:dashWidth="4dp" />
    </shape>
    

    接着在TextView 中使用:

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_margin="8dp"
        android:text="加了虚线描边的矩形"
        android:textSize="16sp"
        android:textColor="@android:color/white"
        android:background="@drawable/bg_rectangle_with_stroke_dash" />
    

    oval

    oval用来画椭圆,而在实际应用中,更多是画正圆,比如消息提示,圆形按钮等。

    上面的效果图应用了 solid、padding、stroke、gradient、size几个特性。size是用来设置形状大小的,如下:
    size: 设置形状默认的大小,可设置宽度和高度
    android:width 宽度
    android:height 高度
    数字0是默认的椭圆,只加了 solid 填充颜色,数字1则加了上下左右 4dp 的padding,后面的数字都是正圆,是通过设置 size 的同样大小的宽高实现的,也可以通过设置控件的宽高一致大小来实现。数字3加了描边,数字4是镂空描边,数字5是虚线描边,数字 6 用了 radial 渐变。注意,使用radial渐变时,必须指定渐变的半径,即 android:gradientRadius 属性。

    以下是渐变的代码实现,文件为 bg_oval_with_gradient.xml:

    <?xml version="1.0" encoding="utf-8"?>
    <!-- android:shape指定形状类型,默认为rectangle -->
    <shape xmlns:android="http://schemas.android.com/apk/res/android"
        android:shape="oval">
        <!-- padding设置内间距 -->
        <padding
            android:bottom="4dp"
            android:left="4dp"
            android:right="4dp"
            android:top="4dp" />
        <!-- size设置形状的大小 -->
        <size
            android:width="40dp"
            android:height="40dp" />
        <!-- gradient设置渐变 -->
        <gradient
            android:endColor="#000000"
            android:gradientRadius="40dp"
            android:startColor="#FFFFFF"
            android:type="radial" />
    </shape>
    

    TextView 中引用的代码:

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:gravity="center"
        android:layout_margin="8dp"
        android:text="6"
        android:textSize="20sp"
        android:textColor="@android:color/black"
        android:background="@drawable/bg_oval_with_gradient" />
    

    line

    line 主要用于画分割线,是通过 stroke 和 size 特性组合来实现的,先看虚线的代码:

    <?xml version="1.0" encoding="utf-8"?>
    <shape xmlns:android="http://schemas.android.com/apk/res/android"
        android:shape="line">
        <!-- 实际显示的线 -->
        <stroke
            android:width="1dp"
            android:color="#2F90BD"
            android:dashGap="2dp"
            android:dashWidth="4dp" />
        <!-- 形状的高度 -->
        <size android:height="4dp" />
    </shape>
    

    画线时,有几点特性必须要知道的:

    1. 只能画水平线,画不了竖线;
    2. 线的高度是通过 stroke 的 android:width属性设置的;
    3. size 的 android:height 属性定义的是整个形状区域的高度;
    4. size 的 height 必须大于 stroke 的 width,否则,线无法显示;
    5. 线在整个形状区域中是居中显示的;
    6. 线左右两边会留有空白间距,线越粗,空白越大;
    7. 引用虚线的 view 需要添加属性 android:layerType,值设为 "software",否则显示不了虚线。

    ring

    首先,shape 根元素有些属性只适用于 ring 类型,先过目下这些属性吧:

    1. android:innerRadius 内环的半径
    2. android:innerRadiusRatio 浮点型,以环的宽度比率来表示内环的半径,默认为 3,表示内环半径为环的宽度除以 3,该值会被 android:innerRadius 覆盖
    3. android:thickness 环的厚度
    4. android:thicknessRatio
      浮点型,以环的宽度比率来表示环的厚度,默认为 9,表示环的厚度为环的宽度除以 9,该值会被 android:thickness 覆盖
    5. android:useLevel 一般为 false,否则可能环形无法显示,只有作为LevelListDrawable 使用时才设为 true

    以下为第四个图的代码:

    <?xml version="1.0" encoding="utf-8"?>
    <shape xmlns:android="http://schemas.android.com/apk/res/android"
        android:innerRadiusRatio="3"
        android:shape="ring"
        android:thicknessRatio="9"
        android:useLevel="false">
        <gradient
            android:endColor="#2F90BD"
            android:startColor="#FFFFFF"
            android:type="sweep" />
        <stroke
            android:width="1dp"
            android:color="@android:color/black" />
    </shape>
    

    如果想让这个环形旋转起来,变成可用的进度条,则只要在 shape 外层包多一个 rotate 元素就可以了。

    <?xml version="1.0" encoding="utf-8"?>
    <rotate xmlns:android="http://schemas.android.com/apk/res/android"
        android:fromDegrees="0"
        android:pivotX="50%"
        android:pivotY="50%"
        android:toDegrees="1080.0">
        <shape
            android:innerRadiusRatio="3"
            android:shape="ring"
            android:thicknessRatio="8"
            android:useLevel="false">
            <gradient
                android:endColor="#2F90BD"
                android:startColor="#FFFFFF"
                android:type="sweep" />
        </shape>
    </rotate>
    

    相关文章

      网友评论

        本文标题:Kevin Learn Android:shape

        本文链接:https://www.haomeiwen.com/subject/tlcozltx.html