想要从我的Android应用程序分享我的应用程序链接到Facebook和Twitter

时间:2012-09-09 18:08:50

标签: android facebook twitter facebook-android-sdk

我想在简单的按钮点击Facebook和Twitter上分享我的Android应用程序链接。 基本上我想分享一些自定义文本和我的市场应用程序链接。

那么我必须做些什么呢?

任何建议都将受到赞赏。

3 个答案:

答案 0 :(得分:1)

String message = "Text I want to share."
Intent share = new Intent(Intent.ACTION_SEND);
share.setType("text/plain");
share.putExtra(Intent.EXTRA_TEXT, message);

startActivity(Intent.createChooser(share, "Title of the dialog the system will open"));

Android - Share on Facebook, Twitter, Mail, ecc

中的答案所述

答案 1 :(得分:1)

btnShare = (Button)findViewById(R.id.btnShare);
    btnShare.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View view) {
            Intent intent = new Intent(Intent.ACTION_SEND);
            intent.setType("text/plan");
            String sharBody = "Body";
            String shareSub = "Subject";
            intent.putExtra(Intent.EXTRA_SUBJECT,shareSub);
            intent.putExtra(Intent.EXTRA_TEXT,shareSub);
            startActivity(intent.createChooser(intent,"Share Using"));           }
    });
}

在主题中添加自定义内容。

答案 2 :(得分:0)

解决方案

1.如果您想将您的应用程序链接从您的 android 应用程序分享到 facebook、twitter 和任何其他社交媒体。

  1. 所以你想关注这些图书馆
    implementation 'com.github.premsingh8171:updateappOnplayStore:1.0.0'
repositories {
            
          maven { url 'https://jitpack.io' 
}
  1. 有三种方法可用于应用评级、在任何其他社交媒体上分享应用和更新应用版本。

更多详情请点击链接:https://github.com/premsingh8171/updateappOnplayStore