我在Button
视图上收到此错误。从我在 SO 上看到的许多问题来看,当您没有正确关闭视图时,似乎会出现此错误。
我想我已经正确关闭了所有标签,但仍然收到此错误。这是为什么?
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="${relativePackage}.${activityClass}" >
<Button
android:layout_width="wrap_content"
android:layout:height="wrap_content"
android:text="@string/mainActivity_button1"
android:onClick="startSecondActivity" />
</RelativeLayout>