2020-08-25 08:04:25 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout 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:padding="24dp">
|
|
|
|
|
|
|
|
<eu.faircode.email.FixedTextView
|
|
|
|
android:id="@+id/tvCaption"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:labelFor="@+id/etPin"
|
|
|
|
android:text="@string/title_pro_response"
|
|
|
|
android:textAppearance="@style/TextAppearance.AppCompat.Large"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
|
|
|
|
<eu.faircode.email.EditTextPlain
|
|
|
|
android:id="@+id/etResponse"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="24dp"
|
2020-11-28 09:11:39 +00:00
|
|
|
android:inputType="text|textNoSuggestions"
|
2020-08-25 08:04:25 +00:00
|
|
|
android:maxLines="1"
|
|
|
|
android:textAppearance="@style/TextAppearance.AppCompat.Medium"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/tvCaption">
|
|
|
|
|
|
|
|
<requestFocus />
|
|
|
|
</eu.faircode.email.EditTextPlain>
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|