AVRCP Controller Disable Automatic Focus Request

Remove automatic focus requests when isMusicActive returns false as
there are too many edge cases in behavior to work well.

Bug: 144507838
Test: Attempt to play media from connected device while no audio is
active

Change-Id: I547d195012c56dc73029ef59ed24bbfe7d536646
(cherry picked from commit 7bf3489331e9b645c3692f9f86beb108a1a0e874)

Merged-In: I547d195012c56dc73029ef59ed24bbfe7d536646
Change-Id: I5870c92a24d1501bd10162d28a3dde5e83b26251
diff --git a/src/com/android/bluetooth/avrcpcontroller/AvrcpControllerStateMachine.java b/src/com/android/bluetooth/avrcpcontroller/AvrcpControllerStateMachine.java
index e3abc4d..8704b07 100644
--- a/src/com/android/bluetooth/avrcpcontroller/AvrcpControllerStateMachine.java
+++ b/src/com/android/bluetooth/avrcpcontroller/AvrcpControllerStateMachine.java
@@ -881,7 +881,6 @@
 
     private boolean shouldRequestFocus() {
         return mService.getResources()
-                .getBoolean(R.bool.a2dp_sink_automatically_request_audio_focus)
-                || !mAudioManager.isMusicActive();
+                .getBoolean(R.bool.a2dp_sink_automatically_request_audio_focus);
     }
 }