You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.7 KiB
43 lines
1.7 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout 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:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical">
|
|
|
|
<androidx.appcompat.widget.Toolbar
|
|
android:id="@+id/tool_bar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="@color/background_menu"
|
|
android:elevation="5dp"
|
|
android:theme="?attr/actionBarStyle"
|
|
app:popupTheme="@style/AppTheme.PopupOverlay"
|
|
app:title="@string/input_verification_code"
|
|
app:titleTextAppearance="@style/ToolbarTitle" />
|
|
|
|
<androidx.appcompat.widget.AppCompatImageView
|
|
android:id="@+id/verification_code_image_view"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="100dp"
|
|
android:background="?android:attr/selectableItemBackgroundBorderless"
|
|
android:scaleType="centerCrop"
|
|
tools:ignore="UnusedAttribute" />
|
|
|
|
<io.legado.app.ui.widget.text.TextInputLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="8dp"
|
|
android:padding="3dp">
|
|
|
|
<io.legado.app.lib.theme.view.ThemeEditText
|
|
android:id="@+id/verification_code"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:hint="@string/verification_code"
|
|
tools:ignore="SpeakableTextPresentCheck,TouchTargetSizeCheck" />
|
|
|
|
</io.legado.app.ui.widget.text.TextInputLayout>
|
|
|
|
</LinearLayout> |