item_vod.xml 396 B

1234567891011
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <shape xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:shape="rectangle">
  4. <!-- 圆角弧度 10 -->
  5. <corners
  6. android:bottomLeftRadius="14dp"
  7. android:bottomRightRadius="14dp"
  8. android:topLeftRadius="16dp"
  9. android:topRightRadius="16dp" />
  10. <solid android:color="@android:color/white" />
  11. </shape>