如题,一个界面有两个Editext,两个都设置了textCursorDrawable了,但是却只有第二个生效,第一个还是默认的,好郁闷,因为有的手机默认是白色的,这样就看不到游标了
text_cursorxml:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
<size android:width="2dp" />
<solid android:color="#ff0000" />
</shape>
<EditText
......
android:textCursorDrawable="@drawable/text_cursorxml" />
这是为什么?要怎么解决,求助各位大神人物。