0

似乎它们应该是一种使用 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>
4

1 回答 1

0

Android 允许您通过 @+id/your_id 表示法在布局文件中动态定义用户界面组件的 ID。

要控制您的 ID,您还可以在 /res/values 文件夹中创建一个名为 ids.xml 的文件,并在此文件中定义所有 ID。

 <?xml version="1.0" encoding="utf-8"?>
 <resources>
 <item name="button1" type="id"/>
 </resources> 

这允许您直接在布局文件中使用 ID。

<ListView
android:id="@+id/listViewmain"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:entries="@id/button1" >

<TextView
   android:layout_width="match_parent"
   android:layout_height="match_parent" >

</TextView>
</ListView>
于 2013-09-19T08:58:11.887 回答