mirror of
https://github.com/cmclark00/RetroMusicPlayer.git
synced 2025-05-22 09:55:20 +01:00
54 lines
No EOL
2 KiB
XML
54 lines
No EOL
2 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"
|
|
android:paddingBottom="16dp">
|
|
|
|
<code.name.monkey.appthemehelper.common.views.ATESecondaryTextView
|
|
android:id="@+id/bannerTitle"
|
|
style="@style/TextAppearance.MaterialComponents.Headline6"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:padding="16dp"
|
|
android:text="@string/remove_song_from_playlist_title" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="end"
|
|
android:orientation="horizontal">
|
|
|
|
<com.google.android.material.button.MaterialButton
|
|
android:id="@+id/actionCancel"
|
|
style="@style/Widget.MaterialComponents.Button.OutlinedButton"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_margin="8dp"
|
|
android:gravity="center_vertical"
|
|
android:paddingStart="24dp"
|
|
android:paddingTop="12dp"
|
|
android:paddingEnd="24dp"
|
|
android:paddingBottom="12dp"
|
|
android:text="@android:string/cancel"
|
|
android:textAllCaps="false"
|
|
app:strokeWidth="2dp" />
|
|
|
|
<com.google.android.material.button.MaterialButton
|
|
android:id="@+id/actionDelete"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_margin="8dp"
|
|
android:gravity="center_vertical"
|
|
android:paddingStart="24dp"
|
|
android:paddingTop="12dp"
|
|
android:paddingEnd="24dp"
|
|
android:paddingBottom="12dp"
|
|
android:text="@string/remove_action"
|
|
android:textAllCaps="false" />
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout> |