I want to show results of our applications by 'Search for applications
by developer name and display the results.' using 'market://search?
q=pub:"<Developer Name>"'. But there's some problem.
If developer name contains ampersand, for example 'P&G', it's not
work. Market app said no result for 'search:pub"P'.
code here.
Intent i = new Intent(Intent.ACTION_VIEW, Uri.parse("http://
market.android.com/search?q=pub:\"P%26G \""));
startActivity(i);
I encoded '&' with %26, well. I don't think it's Uri class problem. I
checked it at google search and it worked well. I also tried to type
in market app. It works, too.
Do you have any idea?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---