xml控件配置屬性android
android:background="@drawable/shape"
標籤spa
corners ----------圓角
gradient ----------漸變
padding ----------內容離邊界距離
size ------------大小
solid ----------填充顏色
stroke ----------描邊code
下面是shape文件代碼:xml
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<corners android:bottomLeftRadius="5dp"
android:bottomRightRadius="5dp"
android:topLeftRadius="0dp"
android:topRightRadius="0dp"/>
<gradient android:angle="270"
android:endColor="@color/transparent_black_40"
android:startColor="@color/transparent_black_15"/>
</shape>utf-8
但願對你們有點幫助吧
io