我想給GridView創建一個圓角矩形邊界,就像以下的圖像顯示一樣:
如何實現這個功能呢?
創建一個 drawable shape ,在 view 中設置為背景
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" >
<solid android:color="#C0C0C0"></solid>
<stroke android:width="1dp" android:color="#000000"></stroke>
<corners android:radius="5dp"></corners>
</shape>