Maison > Questions et réponses > le corps du texte
怎样在程序中打开指定的豌豆荚下载页面,类似于打开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
,豌豆荚对这个页面做了手机浏览器优化,上面有下载链接,只要用户装了豌豆荚客户端就可以直接下载。