我創建了一個列表視圖,並想知道如何邊框添加到我的列表中的項目,如下面的圖片的Android添加插圖邊框若要列表視圖
分頻器drawable.xml
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle" >
<solid android:color="#cdcdcd"/>
<stroke android:width="1dp" android:color="#ffffff"/>
<padding android:left="0dp" android:top="0dp"
android:right="0dp" android:bottom="0dp" />
</shape>
列表視圖.xml
<ListView
android:id="@+id/list"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1"
android:divider="@drawable/divider"
android:dividerHeight="1.0sp"/>
此代碼和mydivider將是一個圖像權利?? –
任何類型的繪圖(圖像,顏色,XML可繪製).. –
這就是我無法實現這種效果使用xml繪製 –