Adaper是一个连接view和xml的工具,真不错!
listview.xml
<ListView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/listView"
android:entries="@array/book" //这里为什么没有s?
android:layout_gravity="right" />
values/arrays.xml
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string-array name="book">
<item>java</item>
<item>php</item>
<item>ajex</item>
<item>asp</item>
<item>swift</item>
</string-array>
</resources>