似乎它们应该是一种使用 android:resource 或 android:entries 仅使用 xml 的按钮数组静态填充列表视图的方法。我更喜欢与我的主布局分开的资源 xml 文件。如果我了解 MVC,则视图更多是静态的,因为控制器具有视图的侦听器并对视图进行更改。我不知道字符串数组是否可以保存按钮对象或者我哪里出错了。有什么建议么?哦,按钮都应该具有相同的属性,但也许这是另一个问题?
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/MainFrameLayout1"
android:layout_width="match_parent"
android:layout_height="match_parent"
package="com.union.doogie"
android:animateLayoutChanges="true"
android:layoutMode="opticalBounds"
android:visibility="visible"
tools:context=".MainActivity" >
<ListView
android:id="@+id/listViewmain"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:entries="@buttons/Buttons" >
<TextView
android:layout_width="match_parent"
android:layout_height="match_parent" >
</TextView>
</ListView>
</FrameLayout>