怎样在程序中打开指定的豌豆荚下载页面,类似于打开Google play的下载页面的形式,
Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse(playAppUrl));
browserIntent.setClassName("com.android.vending", "com.android.vending.AssetBrowserActivity");
browserIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(browserIntent);
迷茫2017-04-17 11:46:13
豌豆莢官方沒有提供這種鏈接,你只有兩種選擇:
market://
url,然後期待使用者會用豌豆莢來開啟這個連結;http://www.wandoujia.com/apps/com.your.domain
,豌豆莢對這個頁面做了手機瀏覽器優化,上面有下載鏈接,只要用戶裝了豌豆莢客戶端就可以直接下載。