Implemented Shuffle feature #22, removed track cover from table #21, and started created the Settings Activity #14

This commit is contained in:
amazing-username
2019-03-03 17:55:37 -05:00
parent c6c89a61d9
commit f9b2573785
18 changed files with 607 additions and 24 deletions
+20
View File
@@ -0,0 +1,20 @@
<preference-headers xmlns:android="http://schemas.android.com/apk/res/android">
<!-- These settings headers are only used on tablets. -->
<header
android:fragment="com.example.mear.SettingsActivity$GeneralPreferenceFragment"
android:title="@string/pref_header_general"
android:icon="@drawable/ic_info_black_24dp"/>
<header
android:fragment="com.example.mear.SettingsActivity$NotificationPreferenceFragment"
android:title="@string/pref_header_notifications"
android:icon="@drawable/ic_notifications_black_24dp"/>
<header
android:fragment="com.example.mear.SettingsActivity$DataSyncPreferenceFragment"
android:title="@string/pref_header_data_sync"
android:icon="@drawable/ic_sync_black_24dp"/>
</preference-headers>