I have an app which features a webview as it's primary component. I want to allow the users to highlight (select) text in the webview, but NOT SHOW any of the contextual options like copy and paste. In my emulator running android 2.3.x this isn't a problem, i can select text and nothing happens. On the nexus device I get the contextual action bar, with copy and select all options. I want to allow the user to select text, but i dont' want them to be able to copy the text. Ideally i would like to surpress the action bar entirely, but need to do this in away that compiles when the minsdk is set to api level 8.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
A hack is to clear the clipboard when your textbox is long clicked:
http://developer.android.com/reference/android/text/ClipboardManager.html |
|||||
|