0
我有一個Android應用程序有一個選項,以分享應用:拍攝意圖目的地
Intent sendIntent = new Intent();
sendIntent.setAction(Intent.ACTION_SEND);
sendIntent.putExtra(Intent.EXTRA_TEXT,
activity.getResources().getString(R.string.share_checkout)
+": https://play.google.com/store/apps/details?id=co.mountainreacher.nocropforwhatsapp");
sendIntent.setType("text/plain");
activity.startActivity(sendIntent);
爲了便於分析,我想知道什麼程序是選擇分享內容的用戶:
這是可行嗎?