<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" >

    <!-- 这是半透明，还可以设置全透明，那就是白色边框的效果了 -->
    <solid android:color="#80065e8d" />

    <stroke
        android:dashGap="0dp"
        android:width="1dp"
        android:color="@android:color/white" />

</shape>