android - How do I extend text selection bar? -
how can achieve :
when select text want bar show not "copy" ,"select all" , "confirm" "share" icon on screenshot
give @ setcustomselectionactionmodecallback(..)
then in custom actionmode.callback, can fetch selected text with:
int start = mytextview.getselectionstart(); int end = mytextview.getselectionend();
Comments
Post a Comment