<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">

    <!--  背景颜色  -->
    <solid android:color="#ffffff" />

    <!--  边框线  -->
    <stroke
        android:width="1dp"
        android:color="@color/colorPrimary" />

    <!--  圆角  -->
    <corners android:radius="5dp" />

</shape>

 

相关文章:

  • 2022-12-23
  • 2021-10-19
  • 2022-12-23
  • 2021-11-08
  • 2021-11-17
  • 2021-11-03
  • 2022-12-23
猜你喜欢
  • 2021-11-10
  • 2022-12-23
  • 2022-12-23
  • 2021-10-27
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案