添加灰色边框资源,用于辅助深色视图渲染。
This commit is contained in:
13
gpsrelaysentinel/src/main/res/drawable/border_gray.xml
Normal file
13
gpsrelaysentinel/src/main/res/drawable/border_gray.xml
Normal file
@@ -0,0 +1,13 @@
|
||||
<?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>
|
||||
|
||||
Reference in New Issue
Block a user