android – 如何更改EditText游标高度?

前端之家收集整理的这篇文章主要介绍了android – 如何更改EditText游标高度?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想改变EditText游标高度,有谁知道怎么做?

解决方法

我不得不深入研究 Android源码以找到答案,但你必须在自定义形状drawable上使用填充.

注意:由于支持textCursorDrawable,仅适用于API 12及更高版本

使用正顶部填充将光标顶部向上移动

用户正向底部填充可将光标底部向下移动

我通常最终使用负底部填充来缩短光标,因为当使用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宽的红色光标成为

顶部高出2sp(更长)
>底部高11cm(较短).

然后在您的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);
}

猜你在找的Android相关文章