开发者

How to launch AndroidMarket for rating my application

开发者 https://www.devze.com 2023-01-26 03:02 出处:网络
I\'m trying to force the user to qualify my application. For do that I need launch the AndroidMarket for the user can access to rating web.

I'm trying to force the user to qualify my application. For do that I need launch the AndroidMarket for the user can access to rating web.

Can anyone tell me what is the best way?

I try this, but don't work:

String urlString = "market.android.com/details?id=com.开发者_开发技巧pakagename";              
Intent intent = new Intent();
intent.setAction(Intent.ACTION_VIEW);
intent.setData(Uri.parse(urlString));
startActivity(intent);

Thanks a lot!


Try this Url:

String urlString = "market://details?id=com.pakagename";  
0

精彩评论

暂无评论...
验证码 换一张
取 消