2018-07-27 18:37:33 +05:30
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2018-08-10 22:40:43 +05:30
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2018-07-27 18:37:33 +05:30
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2019-03-18 23:16:52 +05:30
|
|
|
android:orientation="vertical"
|
2019-05-16 02:25:57 +05:30
|
|
|
android:padding="16dp">
|
2018-07-27 18:37:33 +05:30
|
|
|
|
2018-11-05 19:23:07 +05:30
|
|
|
|
2018-08-30 14:59:30 +05:30
|
|
|
<com.google.android.material.textfield.TextInputLayout
|
2018-12-04 21:04:26 +05:30
|
|
|
android:id="@+id/actionNewPlaylistContainer"
|
2019-03-28 19:02:53 +05:30
|
|
|
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox"
|
2018-07-27 18:37:33 +05:30
|
|
|
android:layout_width="match_parent"
|
2018-08-30 14:59:30 +05:30
|
|
|
android:layout_height="wrap_content"
|
|
|
|
app:hintEnabled="true">
|
2018-08-10 22:40:43 +05:30
|
|
|
|
2018-08-30 14:59:30 +05:30
|
|
|
<com.google.android.material.textfield.TextInputEditText
|
2018-12-04 21:04:26 +05:30
|
|
|
android:id="@+id/actionNewPlaylist"
|
2018-08-10 22:40:43 +05:30
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2018-08-30 14:59:30 +05:30
|
|
|
android:background="@null"
|
2018-08-10 22:40:43 +05:30
|
|
|
android:hint="@string/playlist_name_empty"
|
|
|
|
android:inputType="textPersonName|textCapWords|text"
|
2019-03-18 23:16:52 +05:30
|
|
|
android:padding="16dp" />
|
2018-08-30 14:59:30 +05:30
|
|
|
</com.google.android.material.textfield.TextInputLayout>
|
2018-07-27 18:37:33 +05:30
|
|
|
</LinearLayout>
|