문제

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