如果用户未登录SoundCloud应用程序,则Android SoundCloud共享失败

时间:2015-03-03 18:25:29

标签: android android-intent soundcloud android-sharing

我正在尝试将SoundCloud共享功能添加到我的应用中。假设用户已安装SoundCloud应用程序,但仅当他们登录到应用程序时,共享才能与隐式共享方法一起使用。是否有可能检查他们是以某种方式登录或某些解决方法,以便在SoundCloud共享活动弹出时让他们登录?

谢谢!

这是共享代码:

 File audio = new File(sharePath);
            Intent intent = new Intent(Intent.ACTION_SEND).setType("audio/*");
            intent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(audio));
            //startActivityForResult(Intent.createChooser(intent, "Share to"),SHARE_SOUND);
            startActivity(Intent.createChooser(intent, "Share to"));

0 个答案:

没有答案