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 enter image description here

give @ setcustomselectionactionmodecallback(..)

then in custom actionmode.callback, can fetch selected text with:

int start = mytextview.getselectionstart(); int end = mytextview.getselectionend(); 

Comments

Popular posts from this blog

javascript - Count length of each class -

What design pattern is this code in Javascript? -

hadoop - Restrict secondarynamenode to be installed and run on any other node in the cluster -