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.
24 lines
746 B
24 lines
746 B
<?xml version="1.0" encoding="utf-8"?>
|
|
<shape xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
<!-- 设置透明背景色 -->
|
|
<solid android:color="#f6ddcc" />
|
|
|
|
<!-- 设置一个黑色边框 -->
|
|
<!-- <stroke-->
|
|
<!-- android:width="4px"-->
|
|
<!-- android:color="#ed7041" />-->
|
|
<!-- 设置四个圆角的半径 -->
|
|
<corners
|
|
android:bottomLeftRadius="5dp"
|
|
android:bottomRightRadius="5dp"
|
|
android:topLeftRadius="5dp"
|
|
android:topRightRadius="5dp" />
|
|
<!-- 设置一下边距,让空间大一点 -->
|
|
<!-- <padding-->
|
|
<!-- android:bottom="5dp"-->
|
|
<!-- android:left="5dp"-->
|
|
<!-- android:right="5dp"-->
|
|
<!-- android:top="5dp" />-->
|
|
|
|
</shape>
|
|
|