アンドロイドアプリで共有コンテンツに以下のコードを使用しています。アンドロイド7. +では正常に動作していますが、marshmallow(6.0.1)では動作しません。提案してください。android marshmallowでシェアインテントが動作しない
shareNow.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
try {
Intent sharingIntent = new Intent(Intent.ACTION_SEND);
sharingIntent.setType("text/plain");
String shareBody = Constants.SHARE_TEXT + refer_code;
sharingIntent.putExtra(Intent.EXTRA_SUBJECT, "Share");
sharingIntent.putExtra(Intent.EXTRA_TEXT, shareBody);
startActivity(Intent.createChooser(sharingIntent, "Share via"));
} catch (Exception e) {
ShowToastMsg.showToast(getActivity(), "Error Occured");
}
}
});