You need to create an intent. Try this: Intent i = new Intent(Intent.ACTION_VIEW, Uri.parse(url)); startActivity(i);
-Jesus On Jan 29, 3:55 pm, mistergoomba <[email protected]> wrote: > Hello. I'm new to Android development and when I try to search for > this answer, I get pushed in a different direction. > > I am putting together an app that will play videos. I've figured out > how to stream videos directly into the app from the web using a > URLConnection, however I'm having memory issues. I would like to > instead try linking the same URL I am streaming from to the browser so > that it will stream using the Android player. > > For some reason I'm having problems just pushing a URL to the browser. > Can anyone point me in the right direction? > > Thanks! -- 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

