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.
25 lines
736 B
25 lines
736 B
|
6 hours ago
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<shape xmlns:android="http://schemas.android.com/apk/res/android">
|
||
|
|
|
||
|
|
<!-- 设置透明背景色 -->
|
||
|
|
<!-- <solid android:color="#87CEEB" />-->
|
||
|
|
|
||
|
|
<!-- 设置一个黑色边框 -->
|
||
|
|
<stroke
|
||
|
|
android:width="2px"
|
||
|
|
android:color="#ffffff" />
|
||
|
|
<!-- 设置四个圆角的半径 -->
|
||
|
|
<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>
|