Example #1
0
 /**
  * Connect to a Bluetooth Headset. Note: This is an internal function and shouldn't be exposed
  *
  * @hide
  */
 public boolean connectHeadsetInternal(BluetoothDevice device) {
   if (DBG) log("connectHeadsetInternal");
   if (mService != null && isEnabled()) {
     try {
       return mService.connectHeadsetInternal(device);
     } catch (RemoteException e) {
       Log.e(TAG, e.toString());
     }
   } else {
     Log.w(TAG, "Proxy not attached to service");
     if (DBG) Log.d(TAG, Log.getStackTraceString(new Throwable()));
   }
   return false;
 }