mirror of
https://gitea.winboll.cc/ZhanGSKen/MyWinBoLL.git
synced 2026-08-14 21:47:11 +08:00
14 lines
469 B
XML
14 lines
469 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:shape="rectangle">
|
|
<!-- 白色背景 -->
|
|
<solid android:color="#FFFFFF" />
|
|
<!-- 圆角(12dp,可根据需求调整) -->
|
|
<corners android:radius="12dp" />
|
|
<!-- 轻微阴影(增强层次感) -->
|
|
<stroke
|
|
android:width="1dp"
|
|
android:color="#00000008" /> <!-- 透明黑色阴影,避免生硬 -->
|
|
</shape>
|
|
|