PlayerAndroid/app/src/main/res/layout/dialog_remove_from_playlist...

30 lines
1.2 KiB
XML
Raw Normal View History

2018-07-27 13:07:33 +00:00
<?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-04 15:34:26 +00:00
android:paddingTop="8dp"
2018-07-27 13:07:33 +00:00
android:orientation="vertical">
2018-11-05 13:53:07 +00:00
<code.name.monkey.appthemehelper.common.views.ATESecondaryTextView
2018-12-04 15:34:26 +00:00
android:id="@+id/bannerTitle"
2018-11-05 13:53:07 +00:00
style="@style/SubTitleTextAppearance"
2018-07-27 13:07:33 +00:00
android:padding="12dp"
2018-11-05 13:53:07 +00:00
android:text="@string/remove_song_from_playlist_title" />
2018-07-27 13:07:33 +00:00
2018-11-05 13:53:07 +00:00
<code.name.monkey.appthemehelper.common.views.ATESecondaryTextView
2018-12-04 15:34:26 +00:00
android:id="@+id/actionRemove"
2018-07-27 13:07:33 +00:00
style="@style/TextAppearance.AppCompat.Subhead"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="12dp"
android:text="@string/remove_action" />
2018-11-05 13:53:07 +00:00
<code.name.monkey.appthemehelper.common.views.ATESecondaryTextView
2018-12-04 15:34:26 +00:00
android:id="@+id/actionCancel"
2018-07-27 13:07:33 +00:00
style="@style/TextAppearance.AppCompat.Subhead"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="12dp"
android:text="@android:string/cancel" />
</LinearLayout>