2018-08-15 20:47:09 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2018-12-17 15:25:35 +01:00
|
|
|
<androidx.cardview.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
|
2022-07-26 20:24:50 +02:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2018-08-15 20:47:09 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginStart="16dp"
|
2018-12-17 15:25:35 +01:00
|
|
|
android:layout_marginEnd="16dp"
|
|
|
|
android:layout_marginBottom="8dp"
|
|
|
|
android:orientation="horizontal">
|
|
|
|
|
2018-08-15 20:47:09 +02:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="?android:colorBackground"
|
2018-12-17 15:25:35 +01:00
|
|
|
android:orientation="vertical"
|
2018-08-15 20:47:09 +02:00
|
|
|
android:paddingStart="16dp"
|
|
|
|
android:paddingTop="8dp"
|
2018-12-17 15:25:35 +01:00
|
|
|
android:paddingEnd="16dp"
|
|
|
|
android:paddingBottom="8dp">
|
2018-08-15 20:47:09 +02:00
|
|
|
|
2022-07-26 20:24:50 +02:00
|
|
|
<com.google.android.material.textfield.TextInputLayout
|
|
|
|
style="@style/TuskyTextInput"
|
|
|
|
android:id="@+id/accountFieldNameTextLayout"
|
2018-12-17 15:25:35 +01:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:hint="@string/profile_metadata_label_label"
|
2022-07-26 20:24:50 +02:00
|
|
|
app:counterTextColor="?android:textColorTertiary">
|
2018-08-15 20:47:09 +02:00
|
|
|
|
2022-07-26 20:24:50 +02:00
|
|
|
<com.google.android.material.textfield.TextInputEditText
|
|
|
|
android:id="@+id/accountFieldNameText"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:importantForAutofill="no" />
|
|
|
|
|
|
|
|
</com.google.android.material.textfield.TextInputLayout>
|
|
|
|
|
|
|
|
<com.google.android.material.textfield.TextInputLayout
|
|
|
|
style="@style/TuskyTextInput"
|
|
|
|
android:id="@+id/accountFieldValueTextLayout"
|
2018-12-17 15:25:35 +01:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2022-07-26 20:24:50 +02:00
|
|
|
android:layout_marginTop="4dp"
|
2018-12-17 15:25:35 +01:00
|
|
|
android:hint="@string/profile_metadata_content_label"
|
2022-07-26 20:24:50 +02:00
|
|
|
app:counterTextColor="?android:textColorTertiary">
|
|
|
|
|
|
|
|
<com.google.android.material.textfield.TextInputEditText
|
|
|
|
android:id="@+id/accountFieldValueText"
|
|
|
|
android:lineSpacingMultiplier="1.1"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:importantForAutofill="no" />
|
|
|
|
|
|
|
|
</com.google.android.material.textfield.TextInputLayout>
|
|
|
|
|
2018-08-15 20:47:09 +02:00
|
|
|
</LinearLayout>
|
|
|
|
|
2018-12-17 15:25:35 +01:00
|
|
|
</androidx.cardview.widget.CardView>
|