tags:

views:

27

answers:

1

To Launch the market I usually do this:

Intent intent = new Intent( Intent.ACTION_VIEW, Uri.parse("market://search?q=pname:com.package.package2.package3")); startActivity(intent);

But I would like to run a search based on a keyword like "Happy Toasters"

What is the URL for that kind of search?

+1  A: 
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("market://search?q=your keewords here"));
startActivity(intent);
Moncader