我必须从我的应用程序发送邀请,在除三星之外的所有设备中,以下代码都可以正常工作,在三星设备中,当用户选择我不想要的本机消息传递应用程序时,EXTRA_SUBJECT 也会附加。
Intent intent = new Intent(android.content.Intent.ACTION_SEND);
intent.setType("text/plain");
intent.putExtra(android.content.Intent.EXTRA_SUBJECT, mContext.getResources().getString(R.string.subject));
intent.putExtra(android.content.Intent.EXTRA_TEXT, message);
mContext.startActivity(Intent.createChooser(intent, mContext.getResources().getString(R.string.title)));
有人可以帮帮我吗?
提前致谢