0

リストビューを作成しましたが、下の画像のようにリスト項目に境界線を追加する方法を考えています

ここに画像の説明を入力

仕切り 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>

リストビュー.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"/>
4

3 に答える 3

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>

または、カスタム レイアウトの下部に行を追加します。リストビューのカスタム レイアウトを定義するときに、下部にパディングやマージンがないようにしてください。

<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>
于 2013-02-07T10:30:26.733 に答える
0

使用する:

        android:divider="@drawable/mydivider"

listView xml 属性で

于 2013-02-07T10:25:34.703 に答える