mirror of
http://gitea.winboll.cc/Studio/WinBoLL.git
synced 2026-06-29 12:09:50 +08:00
33 lines
1.1 KiB
XML
33 lines
1.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
|
|
<item
|
|
android:left="2dp"
|
|
android:top="2dp"
|
|
android:right="2dp"
|
|
android:bottom="2dp">
|
|
<shape android:shape="rectangle" >
|
|
<gradient
|
|
android:angle="270"
|
|
android:endColor="#0F000000"
|
|
android:startColor="#0F000000" />
|
|
<corners android:radius="?attr/borderCornerRadius" />
|
|
</shape>
|
|
</item>
|
|
<item
|
|
android:left="3dp"
|
|
android:top="3dp"
|
|
android:right="3dp"
|
|
android:bottom="5dp">
|
|
<shape android:shape="rectangle" >
|
|
<gradient
|
|
android:angle="270"
|
|
android:endColor="#00000000"
|
|
android:startColor="#1AFFFFFF" />
|
|
<stroke
|
|
android:width="1dp"
|
|
android:color="#FF666666" />
|
|
<corners android:radius="?attr/borderCornerRadius" />
|
|
</shape>
|
|
</item>
|
|
</layer-list>
|