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

39 lines
1.6 KiB
XML
Raw Normal View History

2018-08-30 09:29:30 +00:00
<?xml version="1.0" encoding="utf-8"?>
2018-11-05 13:53:07 +00:00
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
2018-08-30 09:29:30 +00:00
xmlns:app="http://schemas.android.com/apk/res-auto"
2018-09-09 19:44:46 +00:00
xmlns:tools="http://schemas.android.com/tools"
2018-08-30 09:29:30 +00:00
android:layout_width="match_parent"
2018-11-05 13:53:07 +00:00
android:layout_height="wrap_content"
android:orientation="vertical"
2019-07-31 09:09:29 +00:00
android:paddingStart="0dp"
android:paddingEnd="16dp"
2018-11-05 13:53:07 +00:00
tools:ignore="MissingPrefix">
2018-08-30 09:29:30 +00:00
2019-05-15 21:38:57 +00:00
<code.name.monkey.retromusic.views.OptionMenuItemView
android:id="@+id/actionLibrary"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:optionIcon="@drawable/ic_library_music_white_24dp"
app:optionTitle="@string/library" />
2019-03-25 12:43:43 +00:00
<code.name.monkey.retromusic.views.OptionMenuItemView
2018-12-12 21:02:14 +00:00
android:id="@+id/actionFolders"
2019-03-25 12:43:43 +00:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:optionIcon="@drawable/ic_folder_white_24dp"
app:optionTitle="@string/folders" />
2018-12-12 21:02:14 +00:00
2019-06-02 02:39:36 +00:00
<code.name.monkey.retromusic.views.OptionMenuItemView
android:id="@+id/actionSettings"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:optionIcon="@drawable/ic_settings_white_24dp"
app:optionTitle="@string/action_settings" />
2019-07-31 19:25:38 +00:00
<code.name.monkey.retromusic.views.OptionMenuItemView
android:id="@+id/actionRate"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:optionIcon="@drawable/ic_star_white_24dp"
app:optionTitle="@string/rate_app" />
2018-11-05 13:53:07 +00:00
</LinearLayout>