首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > 移动开发 >

调用market搜寻软件

2012-09-25 
调用market搜索软件Intent installIntent new Intent(android.intent.action.VIEW)installIntent.set

调用market搜索软件

Intent installIntent = new Intent("android.intent.action.VIEW");installIntent.setData(Uri.parse("market://search?q=pname:"+packageName));startActivity(installIntent);

?其中packageName为软件包名

Uri可以为(包名):http://market.android.com/search?q=pname:<package> or
market://search?q=pname:<package>

?

(作者名)http://market.android.com/search?q=pub:"<Developer?Name>" or
market://search?q=pub:"<Developer Name>"

(关键字)http://market.android.com/search?q=<substring> or
market://search?q=<substring>

(多项查询)

http://market.android.com/search?q=world pname:com.android.hello pub:Android

热点排行