前缀" android" for attribute" android:id"与元素类型相关联" ListView"不受约束

时间:2013-03-16 04:05:06

标签: java flex flex4.5

我一直收到此错误

与元素类型“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引用的项目列表但是一直说未定义状态< / p>

`

<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>

`

1 个答案:

答案 0 :(得分: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>

这应该有效!