list_item_background.xml 373 B

123456789
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <shape xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:shape="rectangle" >
  4. <stroke android:width="3dip" android:color="@color/blue"/>
  5. <corners android:bottomRightRadius="16dp"
  6. android:bottomLeftRadius="16dp"
  7. android:topLeftRadius="16dp"
  8. android:topRightRadius="16dp" />
  9. </shape>