Guest User

Untitled

a guest
Feb 27th, 2013
312
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. case BluetoothChatService.STATE_CONNECTED:
  2. mTitle.setText(R.string.title_connected_to);
  3. mTitle.append(mConnectedDeviceName);
  4. img.setImageResource(R.drawable.ad_icon);
  5. String message = "1";
  6. byte[] send = message.getBytes();
  7. mChatService.write(send);
  8. // Reset out string buffer to zero and clear the edit text
  9. // field
  10. mOutStringBuffer.setLength(0);
  11. // mConversationArrayAdapter.clear();
  12. break;
Advertisement
Add Comment
Please, Sign In to add comment