android标签出现错误,闭合和/修改多次没有成功

 

整个XML文件应该包含在一个`RelativeLayout`里面,你这里貌似RelativeLayout结束后下面还有其他的布局?

如果是一个RelativeLayout嵌套在另一个RelativeLayout里面,应该是这样的格式

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical">

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent">

    </RelativeLayout>

</RelativeLayout>

第二个RelativeLayout要把</RelativeLayout>改成<RelativeLayout