By the default API example, I get the same problem :
when connecting each other more 5 seconds, it will lost automatically
However, finally, I found that I put a finish() in the onCreate() method for debugging. when I take it off, it works fine all the time that sending data to the bluetooth chat demo.
it does not require discovery. and if will pair up the first time, and next time, it will just send directly
the most important code as following:
mBluetoothAdapter = BluetoothAdapter.getDefaultAdapter();
BluetoothDevice device = mBluetoothAdapter
.getRemoteDevice("6C:83:36:A0:0E:89");
new ConnectThread(device).start();
ConnectThread can be found in the Android Demo API:
http://developer.android.com/guide/topics/connectivity/bluetooth.html