• Android渐变色xml配置


    这里渐变色:

    <?xml version="1.0" encoding="utf-8"?>
    
    <shape xmlns:android="http://schemas.android.com/apk/res/android" >
        <!--
        android:startColor="#aa000000"  渐变起始色值
        android:centerColor=""      渐变中间色值
        android:endColor="#ffffffff"    渐变结束颜色
        android:angle="45"      渐变的方向 默认为0 从做向右 ,90时从下向上 必须为45的整数倍
        android:type="radial"       渐变类型 有三种 线性linear 放射渐变radial 扫描线性渐变sweep
        android:centerX="0.5"       渐变中心相对X坐标只有渐变类型为放射渐变时有效
        android:centerY="0.5"       渐变中心相对Y坐标只有渐变类型为放射渐变时有效
        android:gradientRadius="100"    渐变半径 非线性放射有效
         -->
        <gradient
            android:startColor="#b7bbd9"
            android:endColor="#5CACEE"
            android:angle="90"
            />
    
    </shape>

    配合圆角背景:

    <?xml version="1.0" encoding="utf-8"?>
    <shape xmlns:android="http://schemas.android.com/apk/res/android">
        <solid android:color="#FFFFFF" />
        <corners android:topLeftRadius="18px"
            android:topRightRadius="18px"
            android:bottomRightRadius="18px"
            android:bottomLeftRadius="18px"/>
    
        <!--
        android:startColor="#aa000000"  渐变起始色值
        android:centerColor=""      渐变中间色值
        android:endColor="#ffffffff"    渐变结束颜色
        android:angle="45"      渐变的方向 默认为0 从做向右 ,90时从下向上 必须为45的整数倍
        android:type="radial"       渐变类型 有三种 线性linear 放射渐变radial 扫描线性渐变sweep
        android:centerX="0.5"       渐变中心相对X坐标只有渐变类型为放射渐变时有效
        android:centerY="0.5"       渐变中心相对Y坐标只有渐变类型为放射渐变时有效
        android:gradientRadius="100"    渐变半径 非线性放射有效
         -->
        <gradient
            android:startColor="#b7bbd9"
            android:endColor="#5CACEE"
            android:angle="90"
            />
    </shape>

    结果展示:

     参考01:https://www.jianshu.com/p/2600db55908f

    参考02:https://www.jianshu.com/p/54b458d54ef8

  • 相关阅读:
    Linux手动安装Apache2.4
    Linux 定时任务 crontab
    微信小程序 wxs 使用正则替换字符串
    腾讯云 远程通过端口3306访问MYSQL数据库
    微信小程序点击内容展开隐藏评论文章等
    SGA设置
    oracle 序列
    oracle中lnnvl函数
    union 中null值合并原理
    oracle 事务读一致性(一)
  • 原文地址:https://www.cnblogs.com/yang101/p/11762405.html
Copyright © 2020-2023  润新知