我想在简单的按钮点击Facebook和Twitter上分享我的Android应用程序链接。 基本上我想分享一些自定义文本和我的市场应用程序链接。
那么我必须做些什么呢?
任何建议都将受到赞赏。
答案 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"));
中的答案所述
答案 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 和任何其他社交媒体。
implementation 'com.github.premsingh8171:updateappOnplayStore:1.0.0'
repositories {
maven { url 'https://jitpack.io'
}
更多详情请点击链接:https://github.com/premsingh8171/updateappOnplayStore