Reputation: 10662
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":
Upvotes: 2
Views: 1726
Reputation: 15685
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
The underlying code that manages these is in the three classes that derive from HandleView
in android.widget.Editor
:
InsertionHandleView
SelectionStartHandleView
SelectionEndHandleView
Upvotes: 0
Reputation: 1
to be precise ..
In android terminology it is "SelectionModifierCursorController"
Upvotes: 0
Reputation: 30534
This is a shot in the dark--but maybe they're called carets in Webkit?
Upvotes: 0