本文主要是介绍修改ListView 分割线Seperator line,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
修改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"
这篇关于修改ListView 分割线Seperator line的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!