[android-developers] Re: Open Browser from Menu

2009-07-13 Thread Jack Ha
Try this: Intent i = new Intent(Intent.VIEW_ACTION, Uri.parse(http://www.cnn.com;)); startActivity(i); -- Jack Ha Open Source Development Center ・T・ ・ ・Mobile・ stick together The views, opinions and statements in this email are those of the author solely in their individual

[android-developers] Re: Open Browser from Menu

2009-07-13 Thread Donn Felker
Nice! This did it perfectly! Thank you very much. :) --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe

[android-developers] Re: Open Browser from Menu

2009-07-13 Thread Donn Felker
Just for anyone who finds this later, I used the following code (a slight typo was above). Intent i = new Intent(Intent.VIEW_ACTION, Uri.parse(http:// www.cnn.com)); startActivity(i); --~--~-~--~~~---~--~~ You received this message because you are