2019-06-03 00:43:54 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2019-08-26 20:54:20 +02:00
|
|
|
<androidx.core.widget.NestedScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
2019-06-03 00:43:54 +02:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
tools:context=".ui.modules.mobiledevice.token.MobileDeviceTokenDialog">
|
|
|
|
|
|
|
|
<FrameLayout
|
|
|
|
android:layout_width="300dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:padding="20dp">
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/mobileDeviceDialogContent"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:visibility="invisible"
|
|
|
|
tools:visibility="visible">
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/mobileDeviceQr"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center"
|
2019-08-26 20:54:20 +02:00
|
|
|
android:layout_marginBottom="12dp"
|
|
|
|
android:adjustViewBounds="true"
|
2019-06-03 00:43:54 +02:00
|
|
|
android:contentDescription="@string/mobile_device_qr"
|
2019-08-26 20:54:20 +02:00
|
|
|
tools:src="@tools:sample/avatars" />
|
2019-06-03 00:43:54 +02:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/mobile_device_token"
|
|
|
|
android:textSize="17sp" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/mobileDeviceDialogToken"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="3dp"
|
|
|
|
android:text="@string/all_no_data"
|
|
|
|
android:textIsSelectable="true"
|
|
|
|
android:textSize="12sp" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="10dp"
|
|
|
|
android:text="@string/mobile_device_symbol"
|
|
|
|
android:textSize="17sp" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/mobileDeviceDialogSymbol"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="3dp"
|
|
|
|
android:text="@string/all_no_data"
|
|
|
|
android:textIsSelectable="true"
|
|
|
|
android:textSize="12sp" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="10dp"
|
|
|
|
android:text="@string/mobile_device_pin"
|
|
|
|
android:textSize="17sp" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/mobileDeviceDialogPin"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="3dp"
|
|
|
|
android:text="@string/all_no_data"
|
|
|
|
android:textIsSelectable="true"
|
|
|
|
android:textSize="12sp" />
|
|
|
|
|
2019-08-26 20:54:20 +02:00
|
|
|
<com.google.android.material.button.MaterialButton
|
2019-06-03 00:43:54 +02:00
|
|
|
android:id="@+id/mobileDeviceDialogClose"
|
2019-08-26 20:54:20 +02:00
|
|
|
style="@style/Widget.MaterialComponents.Button.TextButton"
|
2019-06-03 00:43:54 +02:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="end"
|
|
|
|
android:layout_marginTop="15dp"
|
2019-08-26 20:54:20 +02:00
|
|
|
android:text="@string/all_close" />
|
2019-06-03 00:43:54 +02:00
|
|
|
</LinearLayout>
|
|
|
|
|
2021-02-01 11:45:10 +01:00
|
|
|
<com.google.android.material.progressindicator.CircularProgressIndicator
|
2019-06-03 00:43:54 +02:00
|
|
|
android:id="@+id/mobileDeviceDialogProgress"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:indeterminate="true"
|
|
|
|
tools:visibility="invisible" />
|
|
|
|
</FrameLayout>
|
2019-08-26 20:54:20 +02:00
|
|
|
</androidx.core.widget.NestedScrollView>
|