my_backgrnd_shape.xml 463 B

12345678910111213141516171819
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <shape xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:shape="rectangle" >
  4. <solid
  5. android:color="#FFDDDDDD"
  6. />
  7. <!--<stroke
  8. android:width="10dp"
  9. android:color="#FF0000FF" /> -->
  10. <corners
  11. android:bottomLeftRadius="14dp"
  12. android:bottomRightRadius="14dp"
  13. android:topLeftRadius="14dp"
  14. android:topRightRadius="14dp" />
  15. </shape>