2013-03-16 67 views
0

我不斷收到此錯誤前綴「機器人」的屬性「機器人:ID」與元素類型「ListView控件」相關的未綁定

前綴「機器人」的屬性「機器人:ID」有關聯元素類型「ListView」未被綁定。代碼

位錯誤所在

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

它的工作原理,當第一教職員狀態驗證碼未啓用時彎曲,如果我創建另一個組件的代碼的作品,但我需要它在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> 

`

回答

0

我想你應該在@android改變:ID /列表@ + ID /列表

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

這應該工作!

+0

仍然出現錯誤,但在我的其他評論中添加了更多細節 – 2013-03-18 01:20:03

相關問題