Files
jsswapp/app/src/main/res/drawable/btn_pressed.xml
2026-01-21 21:16:14 +08:00

16 lines
587 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:radius 弧形的半径 -->
<corners android:radius="5dip" />
<!-- paddingButton里面的文字与Button边界的间隔 -->
<padding
android:left="10dp"
android:top="10dp"
android:right="10dp"
android:bottom="10dp"
/>
<solid android:color="@color/white"/>
<stroke android:width="1px" android:color="@color/btn_normal_pressed_bg"/>
</shape>