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

html - Cut text on left side inside button while centering -

plugins - CodeIgniter support on netbeans 8.0 -

php - Selecting items from MySQL for a status update feed efficiently while accounting for possible spam -