我想改变EditText
光标高度,有人知道怎么做吗?
问问题
13308 次
3 回答
27
我不得不深入研究 Android 源代码才能找到答案,但您基本上必须在自定义形状可绘制对象上使用填充。
注意:仅适用于 API 12 及更高版本,因为支持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 宽的红色光标,即
- 顶部高 2sp(更长)
- 底部高 11sp(短)。
然后在您的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);
}
于 2013-03-06T00:01:19.530 回答
7
填充可用于控制光标高度
光标.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"/>
于 2020-07-22T07:54:00.080 回答
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>
于 2012-07-25T03:02:45.340 回答