读书人

调用market搜寻软件

发布时间: 2012-09-25 09:55:59 作者: rapoo

调用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

读书人网 >移动开发

热点推荐