android Market 搜索APP

Intent intent = new Intent(Intent.ACTION_VIEW);
// market://details?id=com.example.your.package

//产品页面
Uri uri = Uri.parse("market://details?id=packename");
//产品搜索

Uri.parse("market://search?q=packename");
intent.setData(uri);
startActivity(intent);

posted on 2012-04-25 14:17  androidabc08  阅读(209)  评论(0编辑  收藏  举报