<?xml version="1.0" encoding="utf-8"?>
|
<shape xmlns:android="http://schemas.android.com/apk/res/android" >
|
|
<!-- 实心 -->
|
<solid android:color="#66000000" />
|
|
<!-- 渐变
|
<gradient
|
android:angle="270"
|
android:endColor="#FFFFFF"
|
android:startColor="#ff8c00" />-->
|
<!-- 描边 -->
|
<stroke
|
android:width="1dp"
|
android:color="#66dcdcdc" />
|
|
<!-- 圆角 -->
|
<corners android:radius="5dp" />
|
|
<padding
|
android:bottom="1dp"
|
android:left="1dp"
|
android:right="1dp"
|
android:top="1dp" />
|
|
</shape>
|