forked from github/szkolny
33 lines
1.2 KiB
XML
33 lines
1.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?><!--
|
|
~ Copyright (c) Kuba Szczodrzyński 2021-3-19.
|
|
-->
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:paddingStart="?attr/dialogPreferredPadding"
|
|
android:paddingTop="8dp"
|
|
android:paddingEnd="?attr/dialogPreferredPadding">
|
|
|
|
<TextView
|
|
android:id="@android:id/title"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingBottom="4dp"
|
|
tools:text="This is a custom message of the dialog." />
|
|
|
|
<com.google.android.material.textfield.TextInputLayout
|
|
android:id="@+id/text_input_layout"
|
|
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<com.google.android.material.textfield.TextInputEditText
|
|
android:id="@android:id/text1"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content" />
|
|
</com.google.android.material.textfield.TextInputLayout>
|
|
</LinearLayout>
|