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

45 lines
1.8 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"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<TextView
android:id="@+id/title"
fontPath="@string/circular_std_black"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="12dp"
android:text="@string/remove_song_from_playlist_title"
android:textAppearance="@style/TextAppearance.AppCompat.Title"
android:textColor="?android:attr/textColorPrimary"
tools:ignore="MissingPrefix" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
2018-09-09 19:44:46 +00:00
android:paddingEnd="12dp"
android:paddingStart="0dp"
2018-08-30 09:29:30 +00:00
android:gravity="end">
<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>