You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
1011 B
31 lines
1011 B
<?xml version="1.0" encoding="utf-8"?>
|
|
<shape xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
<!-- 设置透明背景色 -->
|
|
<!-- <solid android:color="##deebf7" />-->
|
|
<solid android:color="#d6eaf8" />
|
|
<!-- 设置一个黑色边框 -->
|
|
|
|
<!-- <stroke-->
|
|
<!-- android:width="4px"-->
|
|
<!-- android:color="@color/deepskyblue" />-->
|
|
<!-- 设置四个圆角的半径 -->
|
|
<corners
|
|
android:bottomLeftRadius="5dp"
|
|
android:bottomRightRadius="5dp"
|
|
android:topLeftRadius="5dp"
|
|
android:topRightRadius="5dp" />
|
|
|
|
<!-- <corners-->
|
|
<!-- android:bottomLeftRadius="10px"-->
|
|
<!-- android:bottomRightRadius="10px"-->
|
|
<!-- android:topLeftRadius="10px"-->
|
|
<!-- android:topRightRadius="10px" />-->
|
|
<!-- 设置一下边距,让空间大一点 -->
|
|
<!-- <padding-->
|
|
<!-- android:bottom="5dp"-->
|
|
<!-- android:left="5dp"-->
|
|
<!-- android:right="5dp"-->
|
|
<!-- android:top="5dp" />-->
|
|
|
|
</shape>
|
|
|