71 lines
No EOL
2.8 KiB
XML
71 lines
No EOL
2.8 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical">
|
|
|
|
<code.name.monkey.appthemehelper.common.views.ATEPrimaryTextView
|
|
android:id="@+id/bannerTitle"
|
|
style="@style/SubTitleTextAppearance"
|
|
android:padding="16dp"
|
|
android:text="@string/new_playlist_title" />
|
|
|
|
<com.google.android.material.textfield.TextInputLayout
|
|
android:id="@+id/actionNewPlaylistContainer"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="12dp"
|
|
android:layout_marginTop="8dp"
|
|
android:layout_marginEnd="12dp"
|
|
app:boxBackgroundMode="outline"
|
|
app:boxCollapsedPaddingTop="16dp"
|
|
app:boxCornerRadiusBottomEnd="8dp"
|
|
app:boxCornerRadiusBottomStart="8dp"
|
|
app:boxCornerRadiusTopEnd="8dp"
|
|
app:boxCornerRadiusTopStart="8dp"
|
|
app:boxStrokeColor="@color/md_grey_700"
|
|
app:boxStrokeWidth="1dp"
|
|
app:hintEnabled="true">
|
|
|
|
<com.google.android.material.textfield.TextInputEditText
|
|
android:id="@+id/actionNewPlaylist"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="@null"
|
|
android:hint="@string/playlist_name_empty"
|
|
android:inputType="textPersonName|textCapWords|text"
|
|
android:padding="16dp"
|
|
android:textAppearance="@style/TextAppearance.AppCompat.Subhead" />
|
|
</com.google.android.material.textfield.TextInputLayout>
|
|
|
|
<com.google.android.material.button.MaterialButton
|
|
android:id="@+id/actionCreate"
|
|
style="@style/Widget.MaterialComponents.Button"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="12dp"
|
|
android:layout_marginTop="8dp"
|
|
android:layout_marginEnd="12dp"
|
|
android:gravity="center_vertical"
|
|
android:paddingTop="12dp"
|
|
android:paddingBottom="12dp"
|
|
android:text="@string/create_action"
|
|
app:backgroundTint="@color/md_pink_A400" />
|
|
|
|
<com.google.android.material.button.MaterialButton
|
|
android:id="@+id/actionCancel"
|
|
style="@style/Widget.MaterialComponents.Button.OutlinedButton"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="12dp"
|
|
android:layout_marginTop="8dp"
|
|
android:layout_marginEnd="12dp"
|
|
android:gravity="center_vertical"
|
|
android:paddingTop="12dp"
|
|
android:paddingBottom="12dp"
|
|
android:text="@android:string/cancel"
|
|
app:strokeWidth="2dp" />
|
|
|
|
|
|
</LinearLayout> |