0
我分享通過短信從我的應用程序的鏈接,以下列方式例如WhatsApp其他應用程序的文本消息鏈接。無法分享的Android 6.0
Intent sendIntent = new Intent();
sendIntent.setType("text/plain");
sendIntent.setAction(Intent.ACTION_SEND);
sendIntent.putExtra(Intent.EXTRA_TEXT, message);
context.startActivity(Intent.createChooser(sendIntent, "Share"));
的消息是:
"I think you'll like this " + assetsList.getAssetTitle() + ". " + "www.fashionapp.com/asset/" + assetsList.getAssetId()
此鏈接獲得棒棒糖和預棒棒糖設備正常共享,但不是在棉花糖(僅文本人分享不鏈接)。
我需要把一些額外的許可。
您是否嘗試過前面加上'HTTP://'的網址是什麼? –
謝謝爲我工作 –