aamitgupta
aamitgupta

Reputation: 151

how can i give ratings of android application through RatingBar in Android

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

Answers (2)

Lucas B
Lucas B

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

theomega
theomega

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

Related Questions