I have just written a game for the Android market and would like to remind my customers to leave feeback on the market for the application (especially the demo version.) Is there any way to launch the market intent in a mode that will take the user to the feedback / comments section of the page?

I already use this approach for linking my demo to the paid app...

Intent goToMarket = null;
goToMarket = new Intent(Intent.ACTION_VIEW,Uri.parse("market://details?id=com.paulmaidment.games.flagsoftheworld"));
startActivity(goToMarket);

Is there a best practice that any Android devs out there might know of?

Additionally, is there any way to track referalls from my demo app so that I can try to calculate some kind of a conversion rate? (i.e. how effective the demo app is at generating sales.)

link|improve this question
feedback

4 Answers

up vote 7 down vote accepted

I'm not sure if its possible for an intent to take a user directly into the feedback/comments section. The developer guide does not mention that possibility.

As for tracking referrals you might want to check out this: http://code.google.com/mobile/analytics/docs/android/#android-market-tracking

link|improve this answer
feedback

note that in order to make the activities flow more expected for the end user , you should consider adding some intent flags . i suggest :

String appPackageName=getResources().getString(R.string.app_package_name);
Intent marketIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("market://details?id="+appPackageName));
marketIntent.addFlags(Intent.FLAG_ACTIVITY_NO_HISTORY | Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET);
startActivity(marketIntent);

this way , when the user is pressing back , he will get to your application and not stay on the market (if he was there before) . also , if the user has opened your app again (after it was gone to the background) , the market won't show up .

you can also add a try catch for the "startActivity" call , so that you will be able to show the website of the app if the market is not available (either uninstalled somehow , or because the device's company didn't include it) .

link|improve this answer
feedback

Try this as your intent URI

market://details?id=<packagename>
link|improve this answer
feedback

Walkthroug:

Integer appversion = 1;

Then perform a webrequest for receivin the current Version, if the version is not equal to the version stored in the app call the dialog above and put this in the onclicklistener:

Intent goToMarket = null;
goToMarket = new Intent(Intent.ACTION_VIEW,
         Uri.parse("market://details?id=com.paulmaidment.games.flagsoftheworld"));
startActivity(goToMarket);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.