Android7.0 ShapeDrawable背景样式圆角

SHapeDrawable 通过颜色来构造图形。通过xml构建。

1.建立文件

在res文件里新建drawable文件,标签为shape

2.标签详解

  • shape表示图形文件

rectangle 矩形
oval 椭圆
line 横线
ring 圆环

ring标签有额外属性
这里写图片描述

  • corners表示shape的四个角

  • gradient 渐变色填充

  • solid纯色填充

  • stroke描边

  • padding 背景空白

  • size固有大小(可省略)

3.例子

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
        android:shape="rectangle">
    // rectangle \ oval \ line \ ring
    //corners  四个角度
    <corners
        android:radius="3dp"
        android:bottomLeftRadius="5dp"
        android:bottomRightRadius="5dp"
        android:topLeftRadius="7dp"
        android:topRightRadius="8dp"
        />
    //渐变色
    <gradient
        android:angle="45dp"
        android:centerX="30dp"
        android:centerY="20dp"
        android:startColor="#000"
        android:centerColor="#fff"
        android:endColor="#555"
        android:gradientRadius="30dp"
        android:useLevel="false"
        android:type="radial"
        />
    //solid 纯色填充
    <solid
        android:color="#ccc"
        />
    //stroke shape描边
    <stroke
        android:color="#fff"
        android:dashWidth="3dp"
        android:dashGap="30dp"
        android:width="3dp"
        />
    //padding 背景空白大小
    <padding
        android:left="3dp"
        android:bottom="3dp"
        android:right="2dp"
        android:top="4dp"
        />
    //size 固有宽度 高度
    <size
        android:width="300dp"
        android:height="300dp"
        />
</shape>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值