EditText 设置光标颜色方法:
方法一:xml设置
<EditTextEditText 里面有textCursorDrawable属性,当设置为android:textCursorDrawable="@null"时光标颜色和text color一样
android:layout_width="match_parent"
android:layout_height="50dp"
android:textCursorDrawable="@null"
/>
方法二:
这个是重点,前一段时间由于需求,不能用xml来写,用代码动态写了个EditText。
EditText et = new EditText(getApplicationContext())
但这样就出问题了,在手机上光标颜色为白色,不仔细看都看不到,又没有et.settextCursorDrawable() 方法。 查阅网上没有相关资料,无解,只能查看源码了。
搜索CursorDrawable 英语好的一目了然,这里就不做解释了, 这里是得到他的方法 到此我们就可以修改光标颜色了,只要我们动态改变mCursorDrawableRes的值就可以了
try {//修改光标的颜色(反射)
Field f = TextView.class.getDeclaredField("mCursorDrawableRes");
f.setAccessible(true);
f.set(et, R.drawable.editext_cursor);
} catch (Exception ignored) {
// TODO: handle exception
}
</pre><pre name="code" class="html">editext_cursor的代码如下 ,也可是一个图片什么的。
<?xml version="1.0" encoding="utf-8"?>至此 通过反射办法修改输入框光标颜色完成。语文捉急。。。。。再次感谢张大神的指导。
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle" >
<solid android:color="#ff000000" />
<size android:width="1dp" />
</shape>