Files
XiaoxintongSystemOS/app/src/main/res/drawable/background_wifi.xml
Fanhuitong 3e440de562 version:3.5
fix:
update:优化退出,增加闹钟
2023-05-29 10:21:55 +08:00

26 lines
885 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="@color/wifi_background_color" />
<!-- 边框的颜色 :不能和窗口背景色一样 -->
<!-- 设置按钮的四个角为弧形 -->
<!-- android:radius 弧形的半径 -->
<corners
android:bottomLeftRadius="@dimen/dp_8"
android:bottomRightRadius="@dimen/dp_8"
android:topLeftRadius="@dimen/dp_8"
android:topRightRadius="@dimen/dp_8" />
<!-- paddingButton里面的文字与Button边界的间隔 -->
<!-- <padding-->
<!-- android:bottom="@dimen/dp_10"-->
<!-- android:left="@dimen/dp_10"-->
<!-- android:right="@dimen/dp_10"-->
<!-- android:top="@dimen/dp_10" />-->
</shape>