31 lines
1.2 KiB
XML
31 lines
1.2 KiB
XML
<?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"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:padding="16dp">
|
|
|
|
<TextView
|
|
android:id="@+id/subtitle"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:fontFamily="@font/poppins"
|
|
android:text="Exporting credentials requires a password for encryption."
|
|
android:textSize="18sp"
|
|
android:visibility="gone" />
|
|
|
|
<com.google.android.material.textfield.TextInputEditText
|
|
android:id="@+id/userAgentTextBox"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="8dp"
|
|
android:hint="@string/user_agent"
|
|
app:boxCornerRadiusBottomEnd="8dp"
|
|
app:boxCornerRadiusBottomStart="8dp"
|
|
app:boxCornerRadiusTopEnd="8dp"
|
|
app:boxCornerRadiusTopStart="8dp"
|
|
android:imeOptions="actionDone"
|
|
app:hintAnimationEnabled="true" />
|
|
|
|
</LinearLayout>
|