那时你将无法实现你想要的那么简单。
第一步:将分隔线设置为透明,并将高度稍大一点:
<ListView
android:id="@+id/list"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:divider="@android:color/transparent"
android:dividerHeight="8dp"/>
第二步:为了实现'小线'效果,你可以添加一个自定义的drawable作为列表视图项的背景,假设列表视图项被定义为'list_item.xml':
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
<-- Add a Custom background to the parent container of the listview items -->
android:background="@drawable/list_item_selector"
android:orientation="vertical" >
<-- Rest of the item layout -->
</LinearLayout>
当然,该项目可以是您喜欢的任何东西,我的是:
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
<item>
<shape
android:shape="rectangle">
<stroke android:width="1dp" android:color="@color/bg_gray" />
<solid android:color="@android:color/white" />
</shape>
</item>
<item android:bottom="1dp">
<shape
android:shape="rectangle">
<stroke android:width="1dp" android:color="#FFDDDDDD" />
<solid android:color="#00000000" />
</shape>
</item>
</layer-list>
但这会禁用“全息选择器”效果,每当您单击或突出显示列表视图上的项目时,都会在其上绘制全息蓝色,这就是为什么如果您注意到我们没有使用的列表项背景一个可绘制的图层列表,我们使用了一个名为“list_item_selector”的选择器。
这是选择器,它在未按下时使用可绘制的图层列表,并在按下时使用全息蓝色:
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:state_pressed="false"
android:drawable="@drawable/list_item_bg2"
/>
<item android:state_pressed="true"
android:drawable="@color/holo_blue"
/>
</selector>
编辑评论
绝对有可能,您可以为列表视图项定义一个设置高度,但是,建议设置一个最小高度,而不是一个永远不会改变的预定义高度。
说这是我的列表项布局:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<ImageView
android:id="@+id/grid_image"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_centerVertical="true"
android:src="@drawable/ic_launcher" />
<TextView
android:id="@+id/grid_text"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:gravity="center_vertical"
android:layout_toRightOf="@+id/grid_image"
android:minHeight="48dp"
android:padding="8dp"
android:textIsSelectable="false" />
</RelativeLayout>
所有需要的是,
第一步:在 values/ 文件夹中包含的 dimens.xml 文件中定义您喜欢的最小高度或最大高度。为什么?因为高度肯定会根据布局而变化,并且您可以为每个设备密度定义不同的dimens.xml。
在dimens.xml 中,说:
<resources>
<!-- List Item Max and Min Height -->
<dimen name="list_item_min_height">48dp</dimen>
<dimen name="list_item_max_height">96dp</dimen>
<dimen name="list_item_set_height">64dp</dimen>
</resources>
LinearLayout
然后使用列表项布局的父级的任何值。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="@dimen/list_item_min_height" >
这就是该主题的内容,现在将文本居中,它甚至更简单:
并将其与:注意这仅在您没有将高度设置为 wrap_content 时才有效,否则无关紧要。
android:gravity="center_vertical"
希望有帮助。