【Android】一些经典的drawable样式案例(持续更新)

阅读 63

2022-06-23


一些经典的drawable样式案例

  • 透明渐变底色

【Android】一些经典的drawable样式案例(持续更新)_xml

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<gradient
android:startColor="#22000000"
android:endColor="#88000000"
android:angle="90"/>
</shape>

【Android】一些经典的drawable样式案例(持续更新)_安卓_02

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<gradient
android:startColor="#00000000"
android:centerColor="#11000000"
android:endColor="#55000000"
android:angle="270"/>
</shape>


精彩评论(0)

0 0 举报