jmautologinb.xml 446 B

123456789101112131415
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <shape xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:shape="rectangle">
  4. <!-- 填充颜色 -->
  5. <solid android:color="#50000000"/>
  6. <!-- 线的宽度,颜色灰色 -->
  7. <stroke
  8. android:width="1dp"
  9. android:color="#50000000"/>
  10. <!-- 矩形的圆角半径 -->
  11. <corners android:radius="@dimen/jm_login_radius"/>
  12. </shape>