[citation required]
[1]: http://www.deepbluelambda.org/events/live/decaffeinated-robo...
Since when does Clojure not work well with existing Java frameworks? I wouldn't advocate Clojure or Scala one way or the other since I have little idea of what they're doing, but the above doesn't strike me as sound reasoning.
On the other hand, extending an existing Java class is quite awkward, requiring the use of gen-class, and does not (IMHO) feel idiomatic. I found the gen-class facility poorly documented. It also has a potentially small performance penalty due to an extra dereference (though in my testing I could not measure a meaningful difference between a gen-class object and a native Java implementation).
So Clojure is nice for using Java stuff from Clojure, however it becomes awkward for using Clojure stuff from Java.
For simple adding of a protocol to a class you can always just use (extend-class)
Proxies are simple and work well in other cases.
the gen-class documentation is a bit confusing, it helped me to look @ some examples. I used a different site that I can't find now, but this one seems helpful.
http://kotka.de/blog/2010/02/gen-class_how_it_works_and_how_...
Edit: The pull request was accepted at: https://github.com/gw111zz/HelloScalaOnAndroid