Is it possible to get current playing song data on Android? If yes How?
问题 What I want to do is to get current playing song data. Song might be on spotify or any other music player. Actually I want to get data which transferred to phone hardware. Is it possible ? Is there a provided way to do it ? I've tried, Broadcast Receiver with these filter but onReceived did not invoked. (tested with spotify android app) IntentFilter iF = new IntentFilter(); iF.addCategory("ComponentInfo"); iF.addCategory("com.spotify.mobile.android.service.SpotifyIntentService"); iF