bitsy-wallet/app/src/main/res/layout/activity_license.xml

42 lines
1.5 KiB
XML
Raw Normal View History

<?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.PalmPay.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.PalmPay.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>