Editext有一些奇怪的颜色

时间:2016-07-16 11:36:29

标签: android colors android-edittext styles

你好我在版本19+中有一些EditTexts显示正常但在版本19及更低版本中我得到了这个结果。 editText image

这是我的代码:

<EditText
    android:id="@+id/player_name_edittext"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:hint="@string/name_hint"
    android:contentDescription="@string/a11y_enter_player_name"
    android:fontFamily="sans-serif-light"/>

这是我的styles.xml

<resources>

<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
    <!-- Customize your theme here. -->
    <item name="colorPrimary">@color/colorPrimary</item>
    <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
    <item name="colorAccent">@color/colorAccent</item>
</style>

<style name="DargetTheme" parent="AppTheme" />

<!-- Toolbar theme -->
<style name="ToolbarTheme" parent="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
    <item name="android:textColorPrimary">@color/colorWhite</item>
</style>

<!-- Settings activity theme. -->
<style name="SettingsTheme" parent="DargetTheme" />

任何帮助都会很棒!谢谢!

1 个答案:

答案 0 :(得分:1)

这是安卓工作室2.2预览的Bug,它在Android工作室预览4和5中解决

我建议您使用新版本更新gradle

Android studio 2.2预览4或5

http://tools.android.com/recent/androidstudio22preview4available

或您使用Gradle 2.1.0

for