document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. void setup(){
  2.     Button btnSend = (Button)findViewById(R.id.btnSend);
  3.     btnSend.setOnclickListener(new OnClickListener(){
  4.         public void onClick(View v){
  5.             send("A");
  6.         }
  7.     }
  8. }
');