section.xml 434 B

123456789101112131415161718
  1. <shape
  2. xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:shape="rectangle" >
  4. <stroke
  5. android:width="1dp"
  6. android:color="@color/section_border" />
  7. <solid
  8. android:color="@color/section_background" />
  9. <corners
  10. android:bottomRightRadius="5dp"
  11. android:bottomLeftRadius="5dp"
  12. android:topLeftRadius="8dp"
  13. android:topRightRadius="8dp"/>
  14. </shape>