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

54 lines
2 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"
2019-03-18 23:16:52 +05:30
android:paddingBottom="16dp">
2018-08-30 14:59:30 +05:30
2018-11-05 19:23:07 +05:30
<code.name.monkey.appthemehelper.common.views.ATESecondaryTextView
android:id="@+id/bannerTitle"
2019-03-18 23:16:52 +05:30
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" />
2018-08-30 14:59:30 +05:30
<LinearLayout
2018-08-30 14:59:30 +05:30
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="end"
android:orientation="horizontal">
2018-08-30 14:59:30 +05:30
<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>
2018-08-30 14:59:30 +05:30
</LinearLayout>