Вопрос

How can I achieve this :

When I select text I want the bar to show not only "copy" ,"select all" and "confirm" but also a "share" icon like on a screenshot enter image description here

Это было полезно?

Решение

Give a look at setCustomSelectionActionModeCallback(..)

Then in your custom ActionMode.Callback, can fetch the selected text with:

int start = myTextView.getSelectionStart();
int end = myTextView.getSelectionEnd();
Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top