[android-developers] Adding Rate this application capability

2010-10-06 Thread Amit
Hi All, I have seen few android applications in which there is a capability where they can give an option in the application itself to Grade this application. Clicking on this option opens the respective application's page in the android market where the user can put his rating. I wan to know

Re: [android-developers] Adding Rate this application capability

2010-10-06 Thread YuviDroid
I think they simply use the market intent to start up the Market: Intent intent = new Intent (Intent.ACTION_VIEW, Uri.parse(market://details?id=com.yourpackage.app)); context.startActivity(intent); On Wed, Oct 6, 2010 at 8:24 AM, Amit amitmishr...@gmail.com wrote: Hi All, I have seen few

Re: [android-developers] Adding Rate this application capability

2010-10-06 Thread TreKing
On Wed, Oct 6, 2010 at 1:24 AM, Amit amitmishr...@gmail.com wrote: I wan to know how this is achieved. http://developer.android.com/guide/publishing/publishing.html#marketintent - TreKing