linearlayout出现multiple root tags问题在哪呢就是找不到急死人

















 <LinearLayout
     android:layout_width="match_parent"
     android:background="#FFFFFF"
     android:layout_height="20dp">
 </LinearLayout>
 <!--- 以下第四栏 放文字 -->
<LinearLayout
     android:layout_width="match_parent"
     android:background="#FFFFFF"
     android:layout_height="wrap_content">
     <TextView
         android:layout_width="wrap_content"
         android:text="  温度"
         android:textColor="#99CCFF"
         android:textStyle="normal"
         android:freezesText="true"
         android:textSize="25dp"
         android:gravity="center_vertical"
         android:layout_marginLeft="175dp"
         android:layout_weight="1"
         android:layout_height="wrap_content">
     </TextView>
 </LinearLayout>
 <!--- 以下第五栏 放文字 数值 -->
 <LinearLayout
     android:layout_width="match_parent"
     android:background="#FFFFFF"
     android:layout_height="20dp">
 </LinearLayout>

 <LinearLayout
     android:layout_width="match_parent"
     android:background="#FFFFFF"
     android:layout_height="wrap_content">
     <TextView
         android:layout_width="wrap_content"
         android:text="25 ℃"
         android:textColor="#99CCFF"
         android:textStyle="normal"
         android:freezesText="true"
         android:textSize="25dp"
         android:gravity="center_vertical"
         android:layout_marginLeft="175dp"
         android:layout_weight="1"
         android:id="@+id/Txt_ 温度"
         android:layout_height="wrap_content">
     </TextView>
 </LinearLayout>
 <!--- 以下栏 留白 -->
 <LinearLayout
     android:layout_width="match_parent"
     android:background="#FFFFFF"
     android:layout_height="20dp">
 </LinearLayout>









img

根layout只能有一个。