diff options
| author | Bryce Lee <brycelee@google.com> | 2015-10-28 22:21:54 -0700 |
|---|---|---|
| committer | Bryce Lee <brycelee@google.com> | 2015-10-28 22:21:54 -0700 |
| commit | dc133826225ea61c71f4a2131956e48ed2b0611a (patch) | |
| tree | ad1c42e99bbde92a8a1a120a81bcdb72621c168e /core/java/android/bluetooth/BluetoothHeadsetClient.java | |
| parent | 337495bded9c4035a922274143c1ab119e692bdd (diff) | |
Add ability to set whether audio route is allowed in BluetoothHeadsetClient
Bug: 25332357
Change-Id: I942ac0dea3e4f8580c44e027a570d0b59822a257
Diffstat (limited to 'core/java/android/bluetooth/BluetoothHeadsetClient.java')
| -rw-r--r-- | core/java/android/bluetooth/BluetoothHeadsetClient.java | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/core/java/android/bluetooth/BluetoothHeadsetClient.java b/core/java/android/bluetooth/BluetoothHeadsetClient.java index ff4ebee221e9..874026fb157d 100644 --- a/core/java/android/bluetooth/BluetoothHeadsetClient.java +++ b/core/java/android/bluetooth/BluetoothHeadsetClient.java @@ -1059,6 +1059,41 @@ public final class BluetoothHeadsetClient implements BluetoothProfile { } /** + * Sets whether audio routing is allowed. + * + * Note: This is an internal function and shouldn't be exposed + */ + public void setAudioRouteAllowed(boolean allowed) { + if (VDBG) log("setAudioRouteAllowed"); + if (mService != null && isEnabled()) { + try { + mService.setAudioRouteAllowed(allowed); + } 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())); + } + } + + /** + * Returns whether audio routing is allowed. + * + * Note: This is an internal function and shouldn't be exposed + */ + public boolean getAudioRouteAllowed() { + if (VDBG) log("getAudioRouteAllowed"); + if (mService != null && isEnabled()) { + try { + return mService.getAudioRouteAllowed(); + } 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; + } + + /** * Initiates a connection of audio channel. * * It setup SCO channel with remote connected Handsfree AG device. |
