读书人

warning: found plain #039;id#039; attribute

发布时间: 2012-07-15 20:11:40 作者: rapoo

warning: found plain 'id' attribute; did you mean the new 'android:id' name?
<ListView id="@id/android:list"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
<TextView id="@id/android:empty"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/no_notes"/>

eclipse有warning提示

warning: found plain 'id' attribute; did you mean the new 'android:id' name?
由于jdk版本高于1.5,设置id属性的时候,应为 android:id,而不是id,这样就可以避免了该错误
修改后

<ListView android:id="@id/android:list"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
<TextView android:id="@id/android:empty"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/no_notes"/>

读书人网 >网络基础

热点推荐