// BluetoothPortListener public void onBluetoothPortConnected(boolean success) { if (success) { fireCreateSessionCallback(BT_OK, mPort.getConnectedDeviceName()); } else { fireCreateSessionCallback(BT_ERROR, mPort.getConnectedDeviceName()); } closeBluetoothScreenSilent(); }
// BluetoothScreenCallback public void onBluetoothScreenCancel() { rhoLogInfo("onBluetoothScreenCancel()"); if (mPort != null) { mPort.disconnect(); mPort = null; } fireCreateSessionCallback(BT_CANCEL, ""); mScreen = null; }
// BluetoothPortListener public void onBluetoothPortDataReceived() { fireSessionCallback(mPort.getConnectedDeviceName(), BT_SESSION_INPUT_DATA_RECEIVED); }
// BluetoothPortListener public void onBluetoothPortError() { fireSessionCallback(mPort.getConnectedDeviceName(), BT_ERROR); }
// BluetoothPortListener public void onBluetoothPortDisconnect() { fireSessionCallback(mPort.getConnectedDeviceName(), BT_SESSION_DISCONNECT); }