Back to project page GlassToPhoneBluetooth.
The source code is released under:
MIT License
If you think the Android project GlassToPhoneBluetooth listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package ktlab.lib.connection.bluetooth; //from ww w.j ava2 s .c o m import java.io.IOException; import android.bluetooth.BluetoothDevice; import android.os.Message; public class ClientBluetoothConnectionThread extends BluetoothConnectionThread { protected final BluetoothDevice mDevice; public ClientBluetoothConnectionThread(BluetoothDevice device, Message msg) { super(msg); mDevice = device; } @Override protected void getSocket() { try { mSocket = mDevice.createRfcommSocketToServiceRecord(BluetoothConnection.SERVICE_UUID); } catch (IOException e) { mSocket = null; return; } int count = 0; do { try { if (mSocket != null) { mSocket.connect(); } break; } catch (IOException e) { // DO NOTHING } // retry } while (count++ < 5); } }