Files
APPBase/positions/src/main/res/drawable/btn_dialog_cancel.xml
2025-10-22 05:36:36 +08:00

14 lines
434 B
XML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<!-- 透明背景 -->
<solid android:color="#00000000" />
<!-- 灰色边框(与取消按钮文字同色) -->
<stroke
android:width="1dp"
android:color="#FF333333" />
<!-- 圆角与弹窗一致12dp -->
<corners android:radius="12dp" />
</shape>