40 lines
1.6 KiB
XML
40 lines
1.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:orientation="horizontal"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/rv_result"
|
|
android:layout_width="0dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="5"/>
|
|
<ScrollView
|
|
android:layout_width="0dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="4">
|
|
<LinearLayout
|
|
android:orientation="vertical"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
<TextView
|
|
android:id="@+id/tv_result_content"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/search_result_title"/>
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/rv_ask"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"/>
|
|
<TextView
|
|
android:id="@+id/tv_check_more"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/search_result_more"/>
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/rv_people"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"/>
|
|
</LinearLayout>
|
|
</ScrollView>
|
|
</LinearLayout>
|