PlayerAndroid/app/src/main/res/layout/dialog_delete.xml

38 lines
1.5 KiB
XML
Raw Normal View History

2018-08-30 09:29:30 +00:00
<?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">
2018-11-05 13:53:07 +00:00
<code.name.monkey.appthemehelper.common.views.ATESecondaryTextView
2018-08-30 09:29:30 +00:00
android:id="@+id/title"
2018-11-05 13:53:07 +00:00
style="@style/SubTitleTextAppearance"
2018-08-30 09:29:30 +00:00
android:padding="12dp"
2018-11-05 13:53:07 +00:00
android:text="@string/remove_song_from_playlist_title" />
2018-08-30 09:29:30 +00:00
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
2018-09-23 10:04:43 +00:00
android:gravity="end"
2018-11-13 03:30:08 +00:00
android:padding="12dp">
2018-08-30 09:29:30 +00:00
<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>