2017-02-05 3 views
1

나는 다음과 같은 AppTheme이 : 나는 오래된 장치에 기본 설정 화면을 시작할 때PreferenceCategory 제목은 오래된 장치에 잘못된 색

<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar"> 
    <item name="colorPrimary">@color/md_purple_600</item> 
    <item name="colorPrimaryDark">@color/md_purple_800</item> 
    <item name="colorAccent">@color/md_pink_A200</item> 

    <item name="preferenceTheme">@style/PreferenceThemeOverlay.v14.Material</item> 
</style> 

는 그러나 PreferenceCategory 제목 색상이 기본 청록색 악센트 색상을 디폴트 것으로 보인다. 이것은 알려진 버그, 즉 PreferenceThemeOverlay가 적용되지 않는 또 다른 버그입니까? 아니면 내가 잘못하고있는 것일까?

답변