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

42 lines
1.6 KiB
XML
Raw Normal View History

2018-08-30 14:59:30 +05:30
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
2019-01-28 16:15:51 +05:30
xmlns:app="http://schemas.android.com/apk/res-auto"
2018-08-30 14:59:30 +05:30
android:layout_width="match_parent"
android:layout_height="match_parent"
2019-01-28 16:15:51 +05:30
android:orientation="vertical"
android:paddingTop="8dp">
2018-08-30 14:59:30 +05:30
2018-11-05 19:23:07 +05:30
<code.name.monkey.appthemehelper.common.views.ATESecondaryTextView
2019-01-28 16:15:51 +05:30
android:id="@+id/dialogTitle"
2018-11-05 19:23:07 +05:30
style="@style/SubTitleTextAppearance"
2019-01-28 16:15:51 +05:30
android:text="@string/remove_song_from_playlist_title"
android:textStyle="bold" />
2018-08-30 14:59:30 +05:30
2018-12-25 20:28:47 +05:30
<com.google.android.material.button.MaterialButton
android:id="@+id/actionDelete"
2019-01-28 16:15:51 +05:30
style="@style/Widget.MaterialComponents.Button"
2018-08-30 14:59:30 +05:30
android:layout_width="match_parent"
android:layout_height="wrap_content"
2018-12-25 20:28:47 +05:30
android:layout_marginStart="8dp"
android:layout_marginEnd="8dp"
android:gravity="start|center_vertical"
2019-01-28 16:15:51 +05:30
android:paddingTop="14dp"
android:paddingBottom="14dp"
2018-12-25 20:28:47 +05:30
android:text="@string/remove_action"
android:textAllCaps="false" />
2018-08-30 14:59:30 +05:30
2018-12-25 20:28:47 +05:30
<com.google.android.material.button.MaterialButton
android:id="@+id/actionCancel"
2019-01-28 16:15:51 +05:30
style="@style/Widget.MaterialComponents.Button.OutlinedButton"
2018-12-25 20:28:47 +05:30
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginStart="8dp"
android:layout_marginEnd="8dp"
android:gravity="start|center_vertical"
2019-01-28 16:15:51 +05:30
android:paddingTop="14dp"
android:paddingBottom="14dp"
2018-12-25 20:28:47 +05:30
android:text="@android:string/cancel"
2019-01-28 16:15:51 +05:30
android:textAllCaps="false"
app:strokeWidth="2dp" />
2018-08-30 14:59:30 +05:30
</LinearLayout>