我想通过简单的按钮单击将我的 android 应用程序链接分享到 facebook 和 twitter。基本上我想分享一些自定义文本和我的市场应用程序链接。
那么我必须做些什么来实现这一目标?
任何建议将不胜感激。
我想通过简单的按钮单击将我的 android 应用程序链接分享到 facebook 和 twitter。基本上我想分享一些自定义文本和我的市场应用程序链接。
那么我必须做些什么来实现这一目标?
任何建议将不胜感激。
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 上的答案所述- 在 Facebook、Twitter、Mail、ecc 上共享
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")); }
});
}
在主题中添加您的自定义内容。
解决方案
1.如果您想将您的应用程序链接从您的 android 应用程序分享到 facebook、twitter 和任何其他社交媒体。
implementation 'com.github.premsingh8171:updateappOnplayStore:1.0.0'
repositories {
maven { url 'https://jitpack.io'
}
更多详情请点击链接:https ://github.com/premsingh8171/updateappOnplayStore