我想更改EditText
光标高度,有人知道吗?
答案 0 :(得分:21)
我不得不深入研究Android源码以找到答案,但你必须在自定义形状可绘制上使用填充。
注意:由于支持textCursorDrawable
使用正面 顶部填充移动光标的顶部 更高
用户正面 底部填充以移动光标的底部 更低
我通常最终使用负底部填充来缩短光标,因为当使用lineSpacingMultiplier
或lineSpacingExtra
增加行高时它会低于基线。
示例cursor_red.xml :
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle" >
<size
android:width="2dip" />
<solid
android:color="@color/red" />
<padding
android:top="2sp"
android:bottom="-11sp" />
</shape>
这将产生一个2dip宽的红色光标
然后在您的edittext中,只需指定android:textCursorDrawable
:
<EditText
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textCursorDrawable="@drawable/cursor_red" />
Editor.java 中的相关Android源代码,我从中找到了解决方案:
private void updateCursorPosition(int cursorIndex, int top, int bottom, float horizontal) {
...
mCursorDrawable[cursorIndex].getPadding(mTempRect);
...
mCursorDrawable[cursorIndex].setBounds(left, top - mTempRect.top, left + width,
bottom + mTempRect.bottom);
}
答案 1 :(得分:3)
填充物可用于控制光标高度
cursor.xml
<?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="@color/black" />
</shape>
cursor_with_padding.xml
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:bottom="7dp"
android:drawable="@drawable/cursor"
android:top="8dp" />
</layer-list>
布局
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textCursorDrawable="@drawable/cursor_with_padding"/>
答案 2 :(得分:0)
将editText样式更改为自定义样式
<item name="android:editTextStyle">@style/myEditText</item>
然后使用drawable设置光标:
<style name="myEditText" parent="@android:parentdetails">
<item name="android:textCursorDrawable">@android:drawable/my_cursor_drawable</item>
<item name="android:height">Height here e.g. 50sp</item>
</style>