40 lines
1.3 KiB
XML
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>
|