Android 文本选择术语

发布于 2024-10-21 04:19:22 字数 215 浏览 1 评论 0原文

如何调用文本选择期间(在模拟器中)出现的两个“梯形”?

在哪里可以找到有关如何以编程方式控制它们的更多信息?

为了进一步清楚起见,我附上了一张快照,您可以在其中看到左侧和左侧。 right "text-selection trapezoids":

在此处输入图像描述

How are the two "trapezoids" that appear during text selection (in the emulator) called?

Where can I find more information about how to control them programmatically?

For further clarity, I am attaching a snapshot where you can see the left & right "text-selection trapezoids":

enter image description here

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

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

发布评论

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

评论(4

寄人书 2024-10-28 04:19:22

我们称它们为光标控制器或句柄。

We just call them cursor controllers, or handles.

天涯离梦残月幽梦 2024-10-28 04:19:22

这是一个盲目的尝试——但也许它们在 Webkit 中被称为插入符?

This is a shot in the dark--but maybe they're called carets in Webkit?

梦明 2024-10-28 04:19:22

准确地说..

在android术语中它是“SelectionModifierCursorController”

to be precise ..

In android terminology it is "SelectionModifierCursorController"

属性 2024-10-28 04:19:22

它会根据用于显示这些句柄的图像名称显示,它们被称为“文本选择句柄”,其中有一个

  • 左侧文本选择手柄;
  • 右侧文本选择句柄;和
  • 中间文本选择句柄(只是并排的左右图像)

管理这些的底层代码位于从 android.widget 中的 HandleView 派生的三个类中.Editor

  • InsertionHandleView
  • SelectionStartHandleView
  • SelectionEndHandleView

It would appear based on the name of the images used to display these handles that they're called Text Select Handles, of which there's a

  • Left Text Select Handle;
  • Right Text Select Handle; and a
  • Middle Text Select Handle (which is just the Left and Right images side-by-side)

The underlying code that manages these is in the three classes that derive from HandleView in android.widget.Editor:

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