EditText 中两行之间的宽度?

发布于 2024-11-02 08:16:27 字数 165 浏览 0 评论 0原文

是否可以计算 EditText 中两行之间的宽度?

如果是这样我该怎么做?我需要计算 EditText 在给定高度下可以容纳的行数!我可以获取文本宽度,我也需要获取线宽..但我不知道如何找到它..

任何人都可以帮助我解决这个问题!

谢谢,

西瓦·库马尔

Is it possible to calculate width between two lines in a EditText ?

If so how can I do that ? I need to calculate the number of lines that an EditText can take with the given height of it ! I can get the text width and I need to get the line width too .. but I dont know how to find that ..

Can anyone help me regarding this !!

Thanks,

Siva Kumar

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

回心转意 2024-11-09 08:16:27

你尝试过这个吗? :

public int getLineBounds (int line, 矩形边界) 自:API 级别 1

返回指定的基线
行 (0...getLineCount() - 1) 如果
bounds 不为空,返回顶部,
的左、右、底部范围
其中指定行。如果内部
布局尚未构建,返回0
并将边界设置为 (0, 0, 0, 0)

参数

line 要检查哪一行
(0..getLineCount() - 1)

边界 可选。如果不为空,则返回
线的范围

退货

基线的 Y 坐标

API 链接

Did you try this? :

public int getLineBounds (int line, Rect bounds) Since: API Level 1

Return the baseline for the specified
line (0...getLineCount() - 1) If
bounds is not null, return the top,
left, right, bottom extents of the
specified line in it. If the internal
Layout has not been built, return 0
and set bounds to (0, 0, 0, 0)

Parameters

line which line to examine
(0..getLineCount() - 1)

bounds Optional. If not null, it returns the
extent of the line

Returns

the Y-coordinate of the baseline

Link to the API

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文