2022-07-21 11:24:15 +08:00
|
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2022-07-21 18:35:06 +08:00
|
|
|
|
android:id="@+id/root_layout"
|
2022-07-21 11:24:15 +08:00
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
2022-07-21 18:35:06 +08:00
|
|
|
|
android:clickable="true"
|
|
|
|
|
android:focusable="true"
|
2022-07-21 11:24:15 +08:00
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
|
|
<include layout="@layout/view_title" />
|
|
|
|
|
|
|
|
|
|
<FrameLayout
|
|
|
|
|
android:id="@+id/container"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="0dp"
|
|
|
|
|
android:layout_weight="1" />
|
|
|
|
|
|
|
|
|
|
<View
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="0.5dp"
|
|
|
|
|
android:background="@color/gray3" />
|
|
|
|
|
|
2022-09-05 16:49:10 +08:00
|
|
|
|
<!--套一层Layout,不然控件就透明了-->
|
|
|
|
|
<LinearLayout
|
2022-07-21 11:24:15 +08:00
|
|
|
|
android:layout_width="match_parent"
|
2022-09-05 16:49:10 +08:00
|
|
|
|
android:background="@color/white"
|
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
<com.yunbao.live.views.InputPanelViewHolder
|
|
|
|
|
android:id="@+id/input_panel"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
2022-07-21 11:24:15 +08:00
|
|
|
|
</LinearLayout>
|