改變分隔條,基於數組的ListView

  1. 佈局文件
    android

<ListView
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:divider="#f00"
    android:entries="@array/books"
    android:dividerHeight="2px"
    android:headerDividersEnabled="false"
    >

上面的佈局文件定義了一個ListView,並經過android:entries制定了列表數組,經過android:divider改變了列表項之間的分隔條。數組

2.  數組定義以下:ide

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <string-array name="books">
        <item>hello world</item>
        <item>hello world hello world </item>
        <item>hello world hello world hello world </item>
        <item>hello world hello world hello world hello world </item>
        <item>hello world hello world hello world hello world hello world </item>
    </string-array>
</resources>

數組裏面定義的item會一一顯示出來。佈局

相關文章
相關標籤/搜索