How to implement selecting text capability on Android 2.2? I searched Google but can't find a solution.
feedback
|
|
This is the only way I've found (from google) to support it for android 1.6+, it works but it's not ideal, I think in stock android you can't hold down a webview to highlight until v2.3, but I may be mistaken.. By the way this is for a webview, it might also work on textview, but I haven't tried it (Note: this is currently what my shipped app is using, so it works with all the phones I've had it tested on, but the only reason I found this question was because I was searching and hoping that someone had come up with a better way by now) I've just got a menu item called "Select text" which calls the function "selectnCopy()"
Which looks like this:
Notice I've put the select_help string there as a toast, that's just because it's not immediately clear to the user how it's supposed to work
| |||||||
feedback
|
|
Have you set the text to be selectable? http://developer.android.com/reference/android/widget/TextView.html#attr_android:textIsSelectable | |||||
feedback
|
|
An interesting workaround: You could try displaying your text in a webview. You just have to write the HTML tags and all of that into your string to display, and it should be selectable using the WebKit browser. This should be fairly lightweight and transparent to the user, and I think it would solve your problem. Let me know if you need a code example, it should be fairly simple. Just check out the WebView docs on http://developer.android.com/resources/tutorials/views/hello-webview.html Best of luck! | |||||
feedback
|
|
The Link @Stefan Hållén provided only worked after API Level 11. And Android 2.2 is API Lv.8, that's the reason why you cannot get a resource identifier. | |||
|
feedback
|