0
我開始從我的應用程序內安裝一個有針對性的應用程序的谷歌播放存儲。 - 有沒有辦法知道,如果用這種意圖安裝應用Programmaticaly從谷歌播放安裝應用程序並得到迴應
try {
startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("market://details?id=" + appPackageName)));
} catch (android.content.ActivityNotFoundException ANFE) {
startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("http://play.google.com/store/apps/details?id=" + appPackageName)));
}
問題是:
我知道這可以通過使用像這樣能實現嗎?會在startActivityForResult()
這裏工作嗎?我可以期待什麼樣的反應?