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

35 lines
1.4 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"
android:layout_width="match_parent"
android:layout_height="match_parent"
2018-12-25 20:28:47 +05:30
2018-08-30 14:59:30 +05:30
android:orientation="vertical">
2018-11-05 19:23:07 +05:30
<code.name.monkey.appthemehelper.common.views.ATESecondaryTextView
2018-08-30 14:59:30 +05:30
android:id="@+id/title"
2018-11-05 19:23:07 +05:30
style="@style/SubTitleTextAppearance"
android:text="@string/remove_song_from_playlist_title" />
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"
style="@style/Widget.MaterialComponents.Button.TextButton"
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"
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"
style="@style/Widget.MaterialComponents.Button.TextButton"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginStart="8dp"
android:layout_marginEnd="8dp"
android:gravity="start|center_vertical"
android:text="@android:string/cancel"
android:textAllCaps="false" />
2018-08-30 14:59:30 +05:30
</LinearLayout>