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 - Unusual behaviour when drawing lots of images onto a large canvas -

how can i manage url using .htaccess in php? -

javascript - Chart.js - setting tooltip z-index -