Send song title to spotify to start playing from android app
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: Is there any way to send a song title to the spotify app from my app so that it will start playing the song through spotify? I tried using the bellow code i found in another code but nothing happens. Intent intent = new Intent(Intent.ACTION_MAIN); intent.setAction(MediaStore.INTENT_ACTION_MEDIA_PLAY_FROM_SEARCH); intent.setComponent(new ComponentName("com.spotify.mobile.android.ui", "com.spotify.mobile.android.ui.Launcher")); intent.putExtra(SearchManager.QUERY, "michael jackson smooth criminal"); I know shazam is able to do this. 回答1: You