按鈕邊框,半圓角

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
    //這裏是Linearlayout佈局的背景顏色
    <solid android:color="#363636"
        />

    <stroke
        android:width="1dp"
        android:color="#ffffff"
        />

    <corners android:topLeftRadius="0dp" android:bottomLeftRadius="0dp"
        android:topRightRadius="30dp" android:bottomRightRadius="30dp"/>


</shape>

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章