43 lines
1.7 KiB
XML
43 lines
1.7 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"
|
||
|
xmlns:tools="http://schemas.android.com/tools"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:orientation="vertical">
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/title"
|
||
|
fontPath="@string/circular_std_black"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:padding="12dp"
|
||
|
android:text="@string/remove_song_from_playlist_title"
|
||
|
android:textAppearance="@style/TextAppearance.AppCompat.Title"
|
||
|
android:textColor="?android:attr/textColorPrimary"
|
||
|
tools:ignore="MissingPrefix" />
|
||
|
|
||
|
<LinearLayout
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:gravity="end">
|
||
|
|
||
|
<com.google.android.material.button.MaterialButton
|
||
|
android:id="@+id/action_cancel"
|
||
|
style="@style/Widget.MaterialComponents.Button.TextButton"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:text="@android:string/cancel"
|
||
|
app:strokeColor="@color/md_pink_A400"
|
||
|
app:strokeWidth="1dp" />
|
||
|
|
||
|
<com.google.android.material.button.MaterialButton
|
||
|
android:id="@+id/action_delete"
|
||
|
style="@style/Widget.MaterialComponents.Button"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_marginStart="8dp"
|
||
|
android:text="@string/remove_action"
|
||
|
app:backgroundTint="@color/md_pink_A400" />
|
||
|
</LinearLayout>
|
||
|
</LinearLayout>
|