》 Item高度:
android:minHeight="50dp" ; android:minHeight="?android:attr/listPreferredItemHeight"
》 ListView分割线的颜色、高度设置:
android:divider="#000000" 分割线颜色 ; android:dividerHeight="1px" 分割线高度
》设置listview的Item居中,使用相对布局
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<TextView
android:id="@+id/matters_content"
style="@style/matters_details_listview_font"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="15.0dip"
android:layout_marginRight="15dip"
android:gravity="center"
android:paddingBottom="10dp"
android:paddingTop="10dp"
android:singleLine="true" />
</RelativeLayout>