Android Market URL Format


/ Published in: Java
Save to your folder(s)

Technique for launching android market with specific search terms.


Copy this code and paste it in your HTML
  1. Intent intent = new Intent(Intent.ACTION_VIEW);
  2. intent.setData(Uri.parse("market://search?q=pname:PriceBunnyClient"));
  3. startActivity(intent);

URL: http://groups.google.com/group/android-developers/browse_thread/thread/33a78bf6ba08b446

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.