42 lines
No EOL
1.5 KiB
XML
42 lines
No EOL
1.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:orientation="vertical"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<WebView
|
|
android:id="@+id/wbLA"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="1"/>
|
|
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="@android:color/white">
|
|
|
|
<com.google.android.material.button.MaterialButton
|
|
android:id="@+id/btnAgree"
|
|
style="@style/Widget.Bitsy.Button"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentEnd="true"
|
|
android:layout_marginEnd="12dp"
|
|
android:layout_marginBottom="4dp"
|
|
android:backgroundTint="#139657"
|
|
android:text="@string/button__agree" />
|
|
|
|
<com.google.android.material.button.MaterialButton
|
|
android:id="@+id/btnDisagree"
|
|
style="@style/Widget.Bitsy.Button.TextButton"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginEnd="12dp"
|
|
android:layout_marginBottom="4dp"
|
|
android:layout_toStartOf="@id/btnAgree"
|
|
android:text="@string/button__disagree"
|
|
android:textColor="#f00"/>
|
|
</RelativeLayout>
|
|
|
|
</LinearLayout> |