Files
babelive_and/app/src/main/res/layout/activity_h5_web.xml
2026-02-06 14:55:21 +08:00

40 lines
1.3 KiB
XML

<?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: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"/>
<WebView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@id/standard"
android:id="@+id/webview"/>
<LinearLayout
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>
</RelativeLayout>
</layout>