<?
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"
xmlns:tools=
"http://schemas.android.com/tools"
android:
id=
"@+id/scroll_container"
android:layout_width=
"match_parent"
android:layout_height=
"wrap_content"
android:background=
"@android:color/transparent"
android:paddingHorizontal=
"@dimen/grid_unit_x3"
android:paddingTop=
"@dimen/grid_unit_x2"
android:scrollbarDefaultDelayBeforeFade=
"50000">
<LinearLayout
android:layout_width=
"match_parent"
android:layout_height=
"wrap_content"
android:orientation=
"vertical">
<TextView
android:
id=
"@+id/message_text"
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
android:hyphenationFrequency=
"full"
style=
"@style/Threema.MaterialAlertDialog.Body.Style"
tools:text=
"Message" />
<TextView
android:
id=
"@+id/forgot_password"
android:layout_width=
"match_parent"
android:layout_height=
"wrap_content"
android:layout_marginTop=
"@dimen/grid_unit_x2"
android:clickable=
"true"
android:focusable=
"true"
android:gravity=
"right"
style=
"@style/Threema.MaterialAlertDialog.Body.Style"
android:textColor=
"@color/md_theme_dark_primary"
android:visibility=
"gone"
tools:text=
"Forgot password?"
tools:visibility=
"visible" />
<com.google.android.material.textfield.TextInputLayout
android:
id=
"@+id/password1layout"
android:layout_width=
"match_parent"
android:layout_height=
"wrap_content"
android:layout_marginTop=
"@dimen/grid_unit_x2"
app:passwordToggleEnabled=
"true">
<ch.threema.app.ui.ThreemaTextInputEditText
android:
id=
"@+id/password1"
android:layout_width=
"match_parent"
android:layout_height=
"wrap_content"
android:inputType=
"text|textNoSuggestions|textPassword"
android:singleLine=
"true"
android:textIsSelectable=
"false">
<requestFocus />
</ch.threema.app.ui.ThreemaTextInputEditText>
</com.google.android.material.textfield.TextInputLayout>
<com.google.android.material.textfield.TextInputLayout
android:
id=
"@+id/password2layout"
android:layout_width=
"match_parent"
android:layout_height=
"wrap_content"
android:layout_marginTop=
"2dp"
app:passwordToggleEnabled=
"true">
<ch.threema.app.ui.ThreemaTextInputEditText
android:
id=
"@+id/password2"
android:layout_width=
"match_parent"
android:layout_height=
"wrap_content"
android:inputType=
"text|textNoSuggestions|textPassword"
android:singleLine=
"true"
android:textIsSelectable=
"false" />
</com.google.android.material.textfield.TextInputLayout>
<com.google.android.material.materialswitch.MaterialSwitch
android:
id=
"@+id/check_box"
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
android:layout_marginTop=
"@dimen/grid_unit_x0_5"
android:textAppearance=
"@style/Threema.TextAppearance.Dialog.Body"
android:visibility=
"gone"
tools:text=
"Check box"
tools:visibility=
"visible" />
</LinearLayout>
</ScrollView>