<?xml version="1.0" encoding="UTF-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android"> <solid android:color="#99E0E0E0" /> <corners android:radius="8px" /> <padding android:bottom="0dp" android:left="0dp" android:right="0dp" android:top="0dp" /> </shape>
使用:
<LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginLeft="12dp" android:layout_marginRight="12dp" android:layout_marginTop="5dp" android:background="@drawable/rounder_corner" android:gravity="center" android:orientation="horizontal" android:paddingBottom="6dp" android:paddingTop="6dp"> ...... </LinearLayout>