EditText中的文本颜色具有不同的颜色

时间:2016-11-15 20:58:27

标签: android android-edittext textcolor

screenshot of my app

正如你所看到的,我写了3个字母,它们是粉红色的,或者不管是什么。我在EditText视图中添加了这两个属性

    android:background="@drawable/edit_text"
    android:textColor="@color/black"

其中 edit_text.xml

<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">
    <solid android:color="#4AB5A7" />
    <stroke android:width="2.5dp"
        android:color="#4AB5A7" />
    <corners
        android:radius="5dp"/>
</shape>

我需要做些什么才能让它们变黑?谢谢!

0 个答案:

没有答案