Reputation: 151
I made a screen with rating bar and i want to give the ratings of application that will reflect direct on the Android Market, please let me know if there is any way to do this.
Upvotes: 1
Views: 1335
Reputation: 12013
Take a look at the open-source android market api. I don't believe it is an "official" means to adjust ratings, but this might provide you a starting point.
Upvotes: 0
Reputation: 32031
I don't think this is possible, you can't directly interact with the market and post a rating of your app. You can only open the rating-page of the market and let the user rate himself.
This can be done using a intent with the url market://details?id=<packagename>
, for futher information see the android help.
Upvotes: 2