dialog_stub_textinput.xml 773 B

1234567891011121314151617181920
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:paddingHorizontal="24dp"
  6. android:paddingVertical="16dp">
  7. <com.google.android.material.textfield.TextInputLayout
  8. style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox"
  9. android:id="@+id/text_field"
  10. android:layout_width="match_parent"
  11. android:layout_height="wrap_content">
  12. <com.google.android.material.textfield.TextInputEditText
  13. android:layout_width="match_parent"
  14. android:layout_height="wrap_content" />
  15. </com.google.android.material.textfield.TextInputLayout>
  16. </FrameLayout>