Button
보기에서이 오류가 발생합니다. 내가 보았던 많은 질문들에서, 당신이 당신의 견해를 적절하게 닫지 않을 때이 오류가 발생하는 것으로 보인다.Android XML 레이아웃 : XML 구문 분석 오류 : 형식이 올바르지 않습니다 (잘못된 토큰) - 내 View 태그를 닫았습니다.
모든 태그를 제대로 닫았지만 여전히이 오류가 발생한다고 생각합니다. 왜 그런가요?
<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>
프로젝트를 청소하십시오 및 XML 뷰 변경 대상 운영 체제. –