Cannot stop AudioTrack on Android 5
问题 I cannot stop playback of an AudioTrack on a Nexus 4 running Android 5.0.1. Am I doing something wrong? The code is very simple (it's actually just a test app) and it works perfectly on devices running 2.3.6 and 4.4. Here's the relevant portion: mPlugReceiver = new BroadcastReceiver() { @Override public void onReceive(Context context, Intent intent) { if(Intent.ACTION_HEADSET_PLUG.equals(intent.getAction())) { boolean plugged = intent.getIntExtra("state", 0) == 1; if(plugged) { log.debug(