Android 圓角矩形背景圖


<!-- 背景圓角邊框 wanchengguo 20180419 -->
<shape xmlns:android="http://schemas.android.com/apk/res/android"   android:shape="rectangle" >
    <solid android:color="#BF716D79"
        android:backgroundDimEnabled = "true" 
        android:windowIsTranslucent = "true"/>


<stroke android:color="#BF716D79" android:width="1dp"/>
    <corners
        android:backgroundDimEnabled = "true" 
        android:windowIsTranslucent = "true"
        android:bottomLeftRadius="10dp"
        android:bottomRightRadius="10dp"
        android:topLeftRadius="10dp"
        android:topRightRadius="10dp" />
</shape>
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章