集成完直播后提交代码

This commit is contained in:
xuhuixiang
2026-02-06 14:55:21 +08:00
commit ea9ffa06ff
960 changed files with 75063 additions and 0 deletions

View File

@@ -0,0 +1,45 @@
<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools">
<data>
<variable
name="model"
type="com.xyz.babelive.viewModel.home.MainViewModel" />
</data>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="@color/main_color"
android:fitsSystemWindows="false">
<com.xyz.babelive.ui.view.StatusLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/main_color"
android:id="@+id/standard"/>
<LinearLayout
android:id="@+id/actio_ly"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/standard"
android:orientation="horizontal">
<include layout="@layout/layout_action_bar"
android:id="@+id/action_v"/>
</LinearLayout>
<View android:layout_width="match_parent"
android:layout_height="@dimen/dp1"
android:background="@color/line_color"
android:layout_below="@id/actio_ly"
android:id="@+id/lines1"/>
<WebView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@id/lines1"
android:id="@+id/webview"/>
</RelativeLayout>
</layout>