Android上的Android共享图片和文字

时间:2016-03-15 08:31:16

标签: android

我想在Twitter上分享来自网址的文字和图片。我有一个带有twitter图标的按钮。如果用户点击按钮,我想打开Twitter应用程序。如果手机没有Twitter应用程序,它应该在浏览器上推特。我怎么能这样做?

1 个答案:

答案 0 :(得分:1)

您可以这样做:

try {
    Intent intent = new Intent(Intent.ACTION_VIEW,
          Uri.parse("twitter://user?screen_name=[user_name]"));
    startActivity(intent);
} catch (Exception e) {
    startActivity(new Intent(Intent.ACTION_VIEW,
          Uri.parse("https://twitter.com/#!/[user_name]")));
}