I'd like to somehow stop Bluetooth from changing the volumes when it connects and disconnects. I just want them to stay where they are. How could I go about this? I know how to run services and I can set up listeners, but the following has no effect:
final IntentFilter bluetoothConnectedFilter = new IntentFilter( BluetoothDevice.ACTION_ACL_CONNECTED );
bluetoothConnectedReceiver = new BroadcastReceiver() {
@Override
public void onReceive( Context context, Intent intent ) {
// Change volumes programmatically (code already tested and working elsewhere)
}
};
Thanks for any help.