Fixed an annoying bug in the MusicControllerActivity where the recents card of the app is placed at the wrong position when switching between the songs. Also some code clean ups.
This commit is contained in:
parent
a87320fcc9
commit
b07e602651
12 changed files with 182 additions and 57 deletions
|
|
@ -5,8 +5,7 @@
|
|||
|
||||
<Preference
|
||||
android:key="equalizer"
|
||||
android:title="@string/equalizer"
|
||||
android:layout="@layout/preference_custom" />
|
||||
android:title="@string/equalizer" />
|
||||
|
||||
</com.kabouzeid.gramophone.prefs.DynamicPreferenceCategory>
|
||||
|
||||
|
|
|
|||
|
|
@ -9,7 +9,6 @@
|
|||
android:key="general_theme"
|
||||
android:negativeButtonText="@null"
|
||||
android:positiveButtonText="@null"
|
||||
android:layout="@layout/preference_custom"
|
||||
android:title="@string/pref_title_general_theme" />
|
||||
|
||||
<com.kabouzeid.gramophone.prefs.ColorChooserPreference
|
||||
|
|
@ -27,7 +26,6 @@
|
|||
android:key="colored_album_footers"
|
||||
android:title="@string/pref_title_colored_album_footers"
|
||||
android:summary="@string/pref_summary_colored_album_footers"
|
||||
android:layout="@layout/preference_custom"
|
||||
android:widgetLayout="@layout/preference_dynamic_checkbox" />
|
||||
|
||||
<com.afollestad.materialdialogs.prefs.MaterialMultiSelectListPreference
|
||||
|
|
@ -35,8 +33,7 @@
|
|||
android:entries="@array/pref_navigation_bar_color_titles"
|
||||
android:entryValues="@array/pref_navigation_bar_color_values"
|
||||
android:title="@string/pref_title_navigation_bar"
|
||||
android:summary="@string/pref_summary_colored_navigation_bar"
|
||||
android:layout="@layout/preference_custom" />
|
||||
android:summary="@string/pref_summary_colored_navigation_bar" />
|
||||
|
||||
</com.kabouzeid.gramophone.prefs.DynamicPreferenceCategory>
|
||||
|
||||
|
|
|
|||
|
|
@ -9,7 +9,6 @@
|
|||
android:key="default_start_page"
|
||||
android:negativeButtonText="@null"
|
||||
android:positiveButtonText="@null"
|
||||
android:layout="@layout/preference_custom"
|
||||
android:title="@string/pref_title_set_default_start_page" />
|
||||
|
||||
</com.kabouzeid.gramophone.prefs.DynamicPreferenceCategory>
|
||||
|
|
|
|||
|
|
@ -6,7 +6,6 @@
|
|||
<CheckBoxPreference
|
||||
android:defaultValue="false"
|
||||
android:key="opaque_statusbar_now_playing"
|
||||
android:layout="@layout/preference_custom"
|
||||
android:summary="@string/pref_summary_opaque_statusbar_now_playing"
|
||||
android:title="@string/pref_title_opaque_statusbar_now_playing"
|
||||
android:widgetLayout="@layout/preference_dynamic_checkbox" />
|
||||
|
|
@ -15,7 +14,6 @@
|
|||
android:defaultValue="false"
|
||||
android:dependency="opaque_statusbar_now_playing"
|
||||
android:key="opaque_toolbar_now_playing"
|
||||
android:layout="@layout/preference_custom"
|
||||
android:summary="@string/pref_summary_opaque_toolbar_now_playing"
|
||||
android:title="@string/pref_title_opaque_toolbar_now_playing"
|
||||
android:widgetLayout="@layout/preference_dynamic_checkbox" />
|
||||
|
|
@ -23,7 +21,6 @@
|
|||
<CheckBoxPreference
|
||||
android:defaultValue="false"
|
||||
android:key="force_square_album_art"
|
||||
android:layout="@layout/preference_custom"
|
||||
android:summary="@string/pref_summary_force_square_album_art"
|
||||
android:title="@string/pref_title_force_square_album_art"
|
||||
android:widgetLayout="@layout/preference_dynamic_checkbox" />
|
||||
|
|
@ -31,7 +28,6 @@
|
|||
<CheckBoxPreference
|
||||
android:defaultValue="false"
|
||||
android:key="smaller_title_box_now_playing"
|
||||
android:layout="@layout/preference_custom"
|
||||
android:summary="@string/pref_summary_smaller_title_box_now_playing"
|
||||
android:title="@string/pref_title_smaller_title_box_now_playing"
|
||||
android:widgetLayout="@layout/preference_dynamic_checkbox" />
|
||||
|
|
@ -39,7 +35,6 @@
|
|||
<CheckBoxPreference
|
||||
android:defaultValue="false"
|
||||
android:key="traditional_progress_slider_now_playing"
|
||||
android:layout="@layout/preference_custom"
|
||||
android:summary="@string/pref_summary_traditional_progress_slider_now_playing"
|
||||
android:title="@string/pref_title_traditional_progress_slider_now_playing"
|
||||
android:widgetLayout="@layout/preference_dynamic_checkbox" />
|
||||
|
|
@ -47,7 +42,6 @@
|
|||
<CheckBoxPreference
|
||||
android:defaultValue="false"
|
||||
android:key="playback_controller_card_now_playing"
|
||||
android:layout="@layout/preference_custom"
|
||||
android:summary="@string/pref_summary_playback_controller_card_now_playing"
|
||||
android:title="@string/pref_title_playback_controller_card_now_playing"
|
||||
android:widgetLayout="@layout/preference_dynamic_checkbox" />
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue