mirror of
http://gitea.winboll.cc/Studio/WinBoLL.git
synced 2026-06-29 12:09:50 +08:00
14 lines
378 B
XML
14 lines
378 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<shape xmlns:android="http://schemas.android.com/apk/res/android">
|
|
android:shape="rectangle">
|
|
<!-- 灰色边框 -->
|
|
<stroke
|
|
android:width="1dp"
|
|
android:color="#555555"/>
|
|
<!-- 内部深色背景 -->
|
|
<solid android:color="#222222"/>
|
|
<!-- 轻微圆角 -->
|
|
<corners android:radius="4dp"/>
|
|
</shape>
|
|
|