As Mark Philip noted, a solution can be found in this question:
Android Styling / Theming Only Search Dialog
Basically, it should be written like this
<style name="master" paret="@android:style/Theme.NoTitleBar">
<item name="android:textColorPrimary">#EEEEEE</item>
<item name="android:textColorSecondary">#EEEEEE</item>
<item name="android:textColorTertiary">#EEEEEE</item>
</style>
The main reason was that I wrote a style android:textColorthat should never be stylized.
source
share