mirror of
https://github.com/rebelonion/Dantotsu.git
synced 2026-01-23 09:31:02 +00:00
This includes shadowed variables, unnecessary parameters, layouts with string literals, items that cause performance bottlenecks, and the merge of extension types into only the necessary separate classes.
32 lines
1.1 KiB
XML
32 lines
1.1 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="@string/exporting_requires_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>
|