I'm using ARC Welder to turn my Android app into a Chrome OS app. Most of it works perfectly, except that text selection with a mouse behaves like it would on a touch device, requiring long-clicking or double-clicking on words, and then dragging the ends. Is there a way around this?
Asked
Active
Viewed 438 times
2
-
AFAIK, that's Android's standard behavior, even if you are using an external mouse or keyboard. – CommonsWare May 16 '15 at 14:53
-
@CommonsWare that does appear to be the case. Maybe it's possible to override that behavior with some of the mouse APIs available... – Matt Baer May 17 '15 at 16:05
1 Answers
1
As CommonsWare points out, this is the Android behavior.
Feel free to file a bug even for a feature request. We are open to allowing the behavior to be changed, but it also seems like something that should be left up to the end user (how do they expect to interact with an Android app on a Chromebook?)

Lloyd Pique
- 916
- 5
- 5
-
Thanks for pointing that out. I was going to try to work around it before I filed a feature request, but after testing today in Chrome 47.0.2503.0 (dev), I'm seeing the text selection behavior I was looking for (at least in EditTexts). Looks great. – Matt Baer Sep 10 '15 at 18:59