android的xml界面控件的属性id,注意需要添加一个@+id,而@id是一个错误。
<Button
android:id="@id/Button01"android:id="@+id/Button5"
会给出提示如下:
activity_main.xml:16: error: Error: No resource found that matches the given name (at 'id' with value '@id/Button01').
android的xml界面控件的属性id,注意需要添加一个@+id,而@id是一个错误。
<Button
android:id="@id/Button01"android:id="@+id/Button5"
会给出提示如下:
activity_main.xml:16: error: Error: No resource found that matches the given name (at 'id' with value '@id/Button01').