Android为ListView添加插入边框

时间:2013-02-07 10:23:03

标签: android android-listview

我创建了一个列表视图,想知道如何将边框添加到我的列表项中,如下图所示

enter image description here

divider 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>

列出view.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"/>

3 个答案:

答案 0 :(得分:1)

您可以在列表视图中添加分隔符。

 <ListView
        android:id="@+id/listView1"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:divider="@drawable/divider_line"
        android:layout_weight="1" >
    </ListView>

或在自定义布局的底部添加一行,确保在为listview定义自定义布局时底部不应有填充或边距。

<RelativeLayout
    android:id="@+id/top_layout"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentTop="true"

     >


                ................      add views of your choice   

    <ImageView
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:src="@drawable/divider_line" />
</RelativeLayout>

答案 1 :(得分:0)

使用:

        android:divider="@drawable/mydivider"

在listView xml属性

答案 2 :(得分:0)

请在oncreate()方法

上输入此代码
    listView = (ListView) findViewById(R.id.listchilds);

    int[] colors = { 0xFFDAD7CE, 0xFFF9F8F5, 0 }; 
    listView.setDivider(new GradientDrawable(Orientation.TOP_BOTTOM, colors));
    listView.setDividerHeight(2);