56 lines
2.1 KiB
XML
56 lines
2.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:id="@+id/button_panel"
|
|
style="?attr/buttonBarStyle"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:fillViewport="true"
|
|
android:scrollIndicators="top|bottom">
|
|
|
|
<androidx.appcompat.widget.ButtonBarLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="bottom"
|
|
android:layoutDirection="locale"
|
|
android:orientation="horizontal"
|
|
android:paddingLeft="12dp"
|
|
android:paddingTop="4dp"
|
|
android:paddingRight="12dp"
|
|
android:paddingBottom="4dp">
|
|
|
|
<androidx.appcompat.widget.AppCompatButton
|
|
android:id="@+id/neutral_button"
|
|
style="?attr/buttonBarNeutralButtonStyle"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textColor="@color/dash_blue"
|
|
android:visibility="gone"
|
|
tools:visibility="visible" />
|
|
|
|
<android.widget.Space
|
|
android:id="@+id/spacer"
|
|
android:layout_width="0dp"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="1"
|
|
android:visibility="invisible" />
|
|
|
|
<androidx.appcompat.widget.AppCompatButton
|
|
android:id="@+id/negative_button"
|
|
style="?attr/buttonBarNegativeButtonStyle"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textColor="@color/dash_blue" />
|
|
|
|
<androidx.appcompat.widget.AppCompatButton
|
|
android:id="@+id/positive_button"
|
|
style="?attr/buttonBarPositiveButtonStyle"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textColor="@color/dash_blue"
|
|
android:visibility="gone"
|
|
android:text="@string/authenticate_switch_to_fingerprint"/>
|
|
|
|
</androidx.appcompat.widget.ButtonBarLayout>
|
|
|
|
</ScrollView> |