首页 > Android怎样在程序中打开指定的豌豆荚下载页面?

Android怎样在程序中打开指定的豌豆荚下载页面?

怎样在程序中打开指定的豌豆荚下载页面,类似于打开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);

豌豆荚官方没有提供这种链接,你只有两种选择:

【热门文章】
【热门文章】