68 lines
2.6 KiB
XML
Executable File
68 lines
2.6 KiB
XML
Executable File
<?xml version="1.0" encoding="utf-8"?>
|
|
<android.support.design.widget.CoordinatorLayout
|
|
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"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:fitsSystemWindows="true">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical">
|
|
|
|
<android.support.design.widget.AppBarLayout
|
|
android:id="@+id/appbar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<include layout="@layout/toolbar"/>
|
|
|
|
</android.support.design.widget.AppBarLayout>
|
|
|
|
<android.support.constraint.ConstraintLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<WebView
|
|
android:id="@+id/webview"
|
|
android:layout_width="0dp"
|
|
app:layout_constraintBottom_toTopOf="@+id/linearLayout"
|
|
android:layout_height="0dp"
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
app:layout_constraintVertical_bias="0.0"
|
|
app:layout_constraintLeft_toLeftOf="parent"
|
|
app:layout_constraintRight_toRightOf="parent" />
|
|
|
|
<LinearLayout
|
|
android:orientation="horizontal"
|
|
android:layout_height="wrap_content"
|
|
app:layout_constraintLeft_toLeftOf="parent"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
app:layout_constraintRight_toRightOf="parent"
|
|
android:layout_width="0dp"
|
|
android:id="@+id/linearLayout">
|
|
|
|
<Button
|
|
android:text="@android:string/cancel"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:id="@+id/btn_cancel"
|
|
android:layout_weight="1"
|
|
style="@style/Widget.AppCompat.Button.Borderless" />
|
|
|
|
<Button
|
|
android:text="Recheck"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:id="@+id/btn_recheck"
|
|
android:layout_weight="1"
|
|
style="@style/Widget.AppCompat.Button.Borderless" />
|
|
</LinearLayout>
|
|
</android.support.constraint.ConstraintLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
</android.support.design.widget.CoordinatorLayout>
|