Guest User

Untitled

a guest
Oct 18th, 2018
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. // handler is an instance of Handler
  2. // textView is an instance of TextView, to display text from JavaScript
  3. private class AndroidBridge {
  4. public void callAndroid(final String arg) {
  5. handler.post(new Runnable() {
  6. public void run() {
  7. textView.setText(arg);
  8. }
  9. });
  10. }
  11. }
Add Comment
Please, Sign In to add comment