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"
|
2019-03-28 13:32:53 +00:00
|
|
|
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"
|
2019-09-02 14:51:53 +00:00
|
|
|
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>
|