<ListView android:id="@+id/lv" android:layout_width="match_parent" android:layout_height="match_parent" android:entries="@array/book" android:divider="#f00" android:dividerHeight="2dp" android:fadingEdge="vertical" android:fadingEdgeLength="5dp" />
1 android:entries=“@array/book”
定义这个属性,可以直接将数组显示在列表上,但是我不知道源码,要建立arrays.xml文件,定义数组
如下:arrays.xml
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string-array name="book">
<item>dilireba1</item>
<item>dilireba2</item>
<item>dilireba3</item>
<item>dilireba4</item>
</string-array>
</resources>
ListView有很多xml属性我还不知道是什么意思,慢慢总结吧
@H_403_101@ 原文链接:https://www.f2er.com/xml/295606.html