我正在尝试通过发送以下意图在 Deezer 上执行搜索:
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.deezer.com/search/" + query));
this.startActivity(intent);
在以前的版本中,Web 浏览器打开时会显示“在 Deezer 中打开”(或类似内容)的链接。但是在当前版本中,这不再起作用了。
有什么方法可以打开 Deezer 应用程序并执行搜索?我已经尝试了以下(没有成功):
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("deezer://search/" + query));
this.startActivity(intent);