是否存在类似于Soundcloud Uri(“ soundcloud:// users:” +“ soundcloud_username”)的内容,它允许应用程序用户打开Bandcamp应用程序并转到另一个用户的乐队页面,例如下面的Soundcloud代码?< / p>
Soundcloud代码参考:Force a Soundcloud track to open in Soundcloud app on Android
try {
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("soundcloud://users:" + "soundcloud_username"));
startActivity(intent);
} catch (ActivityNotFoundException e) {
startActivity(new Intent(Intent.ACTION_VIEW,
Uri.parse("http://soundcloud.com/"+string_soundcloudLink_profile)));
}