尝试启动Twitter应用时的ActivityNotFoundException

时间:2016-05-27 16:12:55

标签: android android-intent twitter activitynotfoundexception

我编写了一个启动Twitter应用程序的意图,但即使我安装了最新版本的Twitter,它也会抛出ActivityNotFoundException

我的代码

Intent twitShare = new Intent()
                        .setType("text/plain")
                        .setPackage("com.twitter.android")
                        .setData(Uri.parse(url))
                        .setAction(Intent.ACTION_SEND);
                    startActivity(twitShare);

拜托,我做错了什么?

1 个答案:

答案 0 :(得分:1)

setData()删除IntentACTION_SEND不使用Uri的数据方面。关注the instructions in the ACTION_SEND documentation,以便通过EXTRA_TEXTEXTRA_STREAM提供要发送的数据。