forked from thijooree/android
99 lines
3.9 KiB
XML
99 lines
3.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<ScrollView
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:paddingHorizontal="24dp"
|
|
android:paddingTop="8dp">
|
|
|
|
<!-- Warning: the old seed is overwritten -->
|
|
<com.google.android.material.card.MaterialCardView
|
|
style="@style/Widget.Material3.CardView.Filled"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="16dp"
|
|
app:cardBackgroundColor="?attr/colorErrorContainer"
|
|
app:cardCornerRadius="16dp">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:padding="12dp">
|
|
|
|
<ImageView
|
|
android:layout_width="20dp"
|
|
android:layout_height="20dp"
|
|
android:layout_marginEnd="12dp"
|
|
android:importantForAccessibility="no"
|
|
android:src="@drawable/ic_info"
|
|
app:tint="?attr/colorOnErrorContainer" />
|
|
|
|
<TextView
|
|
android:id="@+id/tvSeedWarning"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:textAppearance="?attr/textAppearanceBodySmall"
|
|
android:textColor="?attr/colorOnErrorContainer" />
|
|
|
|
</LinearLayout>
|
|
|
|
</com.google.android.material.card.MaterialCardView>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:gravity="center_vertical">
|
|
|
|
<com.google.android.material.textfield.TextInputLayout
|
|
android:id="@+id/tilNewSeed"
|
|
style="@style/Widget.Material3.TextInputLayout.OutlinedBox"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:hint="New OTP seed"
|
|
app:helperText="Base32 secret or otpauth:// link">
|
|
|
|
<com.google.android.material.textfield.TextInputEditText
|
|
android:id="@+id/etNewSeed"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:fontFamily="monospace"
|
|
android:imeOptions="actionDone"
|
|
android:inputType="textNoSuggestions|textVisiblePassword"
|
|
android:singleLine="true" />
|
|
|
|
</com.google.android.material.textfield.TextInputLayout>
|
|
|
|
<com.google.android.material.button.MaterialButton
|
|
android:id="@+id/btnScanNewSeed"
|
|
style="@style/Widget.Material3.Button.IconButton"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="8dp"
|
|
android:contentDescription="@string/scan_otp_qr"
|
|
android:tooltipText="@string/scan_otp_qr"
|
|
app:icon="@drawable/ic_qr_scan" />
|
|
|
|
</LinearLayout>
|
|
|
|
<!-- Live preview of the new seed's code, same card as the sign-in screen -->
|
|
<include
|
|
android:id="@+id/cardOtp"
|
|
layout="@layout/view_otp_preview"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="16dp" />
|
|
|
|
</LinearLayout>
|
|
|
|
</ScrollView>
|