0

我不断收到此错误

与元素类型“ListView”关联的属性“android:id”的前缀“android”未绑定。

错误所在的代码位

<ListView
    android:id="@android:id/list"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:choiceMode="singleChoice">
</ListView>

当此代码在 flex 中不处于第一个 veiw 状态时,它可以工作,因为如果我创建另一个组件,代码可以工作但我需要在 homeview 中显示 id 引用的项目列表,但一直说未定义状态

`

<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content">
    <s:List
        android:id="@+id/Games"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent">
    </s:List>
    </LinearLayout>

`

4

1 回答 1

0

我认为您应该将 @android:id/list 更改为 @+id/list

<ListView
    android:id="@+id/list"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:choiceMode="singleChoice">
</ListView>

这应该工作!

于 2013-03-17T05:41:18.783 回答