代码中这样写:
try { java.lang.reflect.Field f = TextView.class.getDeclaredField("mCursorDrawableRes"); f.setAccessible(true); f.set(valueView, R.drawable.edittext_cursor); } catch (Exception e) { }
drawable中的edittext_cursor.xml文件如下:
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle" > <solid android:color="#444444" /> <size android:width="1dp" /> </shape>
本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系我们删除。