我正在尝试为我的Android应用程序编写新的自定义样式.我需要给风格ERRORTEXT其设置后出现setError在EditText.
我该如何定制它的风格?
例如:我想在style.xml中设置background白色和textColor:蓝色等

在我的表格中,我setError("")在EditText场上使用.我的应用程序主题扩展android:Theme.Holo.
我已经手动用深色背景设置图像android:errorMessageBackground和android:errorMessageBackgroundAbove.
现在问题是:错误消息的文本颜色也很暗,不可读.
我尝试textColor在我的主题中更改不同的属性,但我找不到正确的属性.
请问有人能帮助我吗?谢谢!克里斯
我想知道如何将android中的EditText视图的边框颜色更改为其他内容...
这是我的edittext视图:
<EditText
    android:
    android:id="@+id/codeEditText"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:layout_below="@+id/btnEqual"
    android:layout_marginTop="20dp"
    android:ems="10"
    android:gravity="top|left"
    android:inputType="textMultiLine|textNoSuggestions"
    android:scrollbars="vertical"
    android:singleLine="false" >
Thanx前期.
我正在进行EditText  验证并使用' setError'来显示错误消息.
我的主要座右铭是将错误弹出窗口更改为我的应用程序设计.我使用了"android:errorMessageBackground"风格,但不幸的是我得到了**No Resource found error**.
二手Base API :( 2.2即使4.0.3也试过)不确定我们需要做什么?