<?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="match_parent"> <LinearLayout android:id="@+id/contentPanel" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="horizontal"> <androidx.recyclerview.widget.RecyclerView android:id="@+id/leftRecyclerView" android:layout_width="0dp" android:layout_height="wrap_content" android:layout_weight="1.25" android:scrollbars="vertical" app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager" /> <androidx.recyclerview.widget.RecyclerView android:id="@+id/rightRecyclerView" android:layout_width="0dp" android:layout_height="wrap_content" android:layout_weight="3" android:scrollbars="vertical" app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager" /> </LinearLayout> <TextView android:id="@+id/tipsView" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_centerInParent="true" android:text="数据为空,无法获取场景名称" android:textColor="@color/white" android:textSize="@dimen/sp_18" /> </RelativeLayout>