我需要通過應用程序選擇器發送一些文本和Play商店網址。 這是我的代碼:使用ACTION_SEND將網頁網址+一些文本發送到其他應用程序
Intent share = new Intent(android.content.Intent.ACTION_SEND);
share.addFlags(Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET);
share.putExtra(android.content.Intent.EXTRA_TEXT,"hi\r\n");
Uri myUri = Uri.parse("www.google.com");
share.putExtra(android.content.Intent.EXTRA_TEXT,Html.fromHtml("<a href=\""+myUri+"\">"+myUri+"</a>"));
startActivity(Intent.createChooser(share,getResources().getString(R.string.ShareThought)));
即使這樣做之後,我不能夠以顯示已選定的應用程序中的第一個文本(HI)和顯示的鏈接無法點擊,它剛剛得到強調。
我需要幫助才能將文本和網址一起發送。
@Prenra Singhal你是什麼意思這是一個隱含的意圖?因此,您將不知道其他應用程序中的內容 – Hades