Skip to content Skip to sidebar Skip to footer

How To Enable Selection Markers For Edittext In Popupwindow?

I'm using a EditText in a PopupWindow. It shows OK, but the selection markers do not show up in the EditText. Neither does the Options menu change when I long press in the EditText

Solution 1:

Try this,

   editText.setSelectAllOnFocus(true);

Post a Comment for "How To Enable Selection Markers For Edittext In Popupwindow?"