Мой styles.xml
<style name="AppTheme" parent="Theme.MaterialComponents.DayNight"><!-- MaterialComponents theme -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>
Мой preferences.xml
<PreferenceScreen xmlns:app="http://schemas.android.com/apk/res-auto">
<!-- Default EditTextPreference created by default -->
<EditTextPreference
app:key="signature"
app:title="@string/signature_title"
app:useSimpleSummaryProvider="true" />
</PreferenceScreen>
Результат (белый текст на кнопках)
Пустой новый проект. com.google.android.material:material:1.1.0
Как исправить цвет текста на кнопках EditTextPreference?