<?xml version="1.0" encoding="utf-8"?>
|
<shape xmlns:android="http://schemas.android.com/apk/res/android" >
|
|
<!-- 背景 -->
|
<solid android:color="#F5F5F5" />
|
|
<!-- 圆角 -->
|
<corners
|
android:bottomLeftRadius="0dp"
|
android:bottomRightRadius="0dp"
|
android:topLeftRadius="20dp"
|
android:topRightRadius="0dp" />
|
|
</shape>
|