63 lines
2.3 KiB
XML
63 lines
2.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: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"/>
|
|
<android.webkit.WebView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_below="@id/lines1"
|
|
android:visibility="invisible"
|
|
android:id="@+id/webview"/>
|
|
|
|
<RelativeLayout
|
|
android:id="@+id/ry_v"
|
|
android:layout_width="300dp"
|
|
android:layout_height="300dp"
|
|
android:layout_centerInParent="true">
|
|
<ImageView
|
|
android:layout_width="280dp"
|
|
android:layout_height="wrap_content"
|
|
android:src="@mipmap/logo_left"
|
|
android:layout_centerInParent="true"/>
|
|
<com.xyz.babelive.utils.BabeLiveRingLoadingView
|
|
android:layout_width="300dp"
|
|
android:layout_height="300dp"
|
|
/>
|
|
|
|
</RelativeLayout>
|
|
</RelativeLayout>
|
|
</layout>
|