如何在 Android 中使用规则/水平线对齐 EditText 中的文本?
基本上我想在Android中做这样的事情:
我正在尝试在自定义 < 中绘制水平线strong>EditText,然后在这些行上键入内容。
我使用文本大小来表示两条水平线之间的距离。但是,光标的大小和文本的大小不同。因此,我无法继续将文本放置在这些行“上”。
文本库与这些水平线的对齐方式不正确。
以下是用于绘制线条的代码: -
float textSize = getTextSize());
Paint paint = new Paint();
for (int i = 0; i < 50; i++) {
canvas.drawLine(0, textSize * i, getWidth(), textSize * i, paint);
}
EditText 不提供任何获取光标大小的方法。
请建议是否有任何解决方法,或任何其他更好的方法来做到这一点。
Basically I want to do something like this in Android:
I am trying to draw horizontal lines in a custom EditText, and then typing on these lines.
I am using the text size for the distance between two horizontal lines. However, the size of cursor and that of text is not same. Hence, I am not able to maintain placing text "on" these lines.
The alignment of the text base to these horizontal lines are not coming as proper.
Here is the code used for drawing the lines:-
float textSize = getTextSize());
Paint paint = new Paint();
for (int i = 0; i < 50; i++) {
canvas.drawLine(0, textSize * i, getWidth(), textSize * i, paint);
}
EditText doesn't privides has any method for getting the cursor size.
Kindly suggest if there is any workaround for this, or any other better way of doing this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
自定义 EditText,在显示的每行文本之间绘制线条:
现在在需要的地方使用 LinedEditText 类的对象。
示例:
输出:
A custom EditText that draws lines between each line of text that is displayed:
Now use object of LinedEditText class where you need.
An Example:
The Output: