修改ListView 分割线Seperator line
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<ListView android:id="@+id/listGame" android:layout_width="fill_parent" android:layout_height="fill_parent" android:focusable="true" style="@style/listview_select_bg" android:divider="#FFCC00" android:dividerHeight="4px" />
</LinearLayout>
换行分割线的着色及粗小,关键是以下属性:
android:divider="#FFCC00" android:dividerHeight="4px"