【发布时间】:2018-04-27 06:26:59
【问题描述】:
共享按钮与 Viber 和 What's 应用程序一起运行 但不要使用 Facebook, 只是空白区域。
Intent myIntent = new Intent(Intent.ACTION_SEND);
bt = findViewById(R.id.imageShareButton);
bt.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
String shareBody = versesText.getText().toString();
myIntent.setType("text/plain");
myIntent.putExtra(Intent.EXTRA_SUBJECT, "Perfect Verses");
myIntent.putExtra(Intent.EXTRA_TEXT, shareBody + "\n" + "Read More...");
myIntent.putExtra(Intent.EXTRA_TEXT, shareBody);
startActivity(Intent.createChooser(myIntent, getResources().getString(R.string.app_name)));
}
});
我的应用在 GooglePlay 上的链接, https://play.google.com/store/apps/details?id=com.samuel.perfectverses
【问题讨论】:
标签: android android-studio android-intent share