PlayerAndroid/app/src/main/res/layout/dialog_playlist.xml

27 lines
1.1 KiB
XML
Raw Normal View History

2018-07-27 13:07:33 +00:00
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
2018-08-10 17:10:43 +00:00
xmlns:app="http://schemas.android.com/apk/res-auto"
2018-07-27 13:07:33 +00:00
android:layout_width="match_parent"
android:layout_height="match_parent"
2019-03-18 17:46:52 +00:00
android:orientation="vertical"
2019-05-15 20:55:57 +00:00
android:padding="16dp">
2018-07-27 13:07:33 +00:00
2018-11-05 13:53:07 +00:00
2018-08-30 09:29:30 +00:00
<com.google.android.material.textfield.TextInputLayout
2018-12-04 15:34:26 +00:00
android:id="@+id/actionNewPlaylistContainer"
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox"
2018-07-27 13:07:33 +00:00
android:layout_width="match_parent"
2018-08-30 09:29:30 +00:00
android:layout_height="wrap_content"
app:hintEnabled="true">
2018-08-10 17:10:43 +00:00
2018-08-30 09:29:30 +00:00
<com.google.android.material.textfield.TextInputEditText
2018-12-04 15:34:26 +00:00
android:id="@+id/actionNewPlaylist"
2018-08-10 17:10:43 +00:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
2018-08-30 09:29:30 +00:00
android:background="@null"
2018-08-10 17:10:43 +00:00
android:hint="@string/playlist_name_empty"
android:inputType="textPersonName|textCapWords|text"
android:padding="16dp"
android:textAppearance="@style/TextViewNormal" />
2018-08-30 09:29:30 +00:00
</com.google.android.material.textfield.TextInputLayout>
2018-07-27 13:07:33 +00:00
</LinearLayout>