Android is probably not the ideal language to learn how to program generally ~ there are many other languages better suited to that. I personally recommend VB.NET -- it's free and easy and structured very similar to Java, so most general knowledge acquired there will transfer easily back to Java. If you still want to try Android first, it would help to describe exactly what you want your program to do.
--Ben On Sep 16, 11:44 pm, MarQuel Middleton <[email protected]> wrote: > Yea i mean this is my first actual applications and im really confused > do i have to make a xml layout to read the open stream? > > On Sep 16, 11:58 pm, BJP <[email protected]> wrote: > > > To read a file from a standard internet connection protocol, just > > create a new java.net.URL and access its openStream() method: > > > import java.io.InputStream; > > import java.net.URL; > > > String url = "http://www.yoursite.com/filename.html"; > > InputStream s = new URL(url).openStream(); > > > ...then just read it like a normal IO stream (one of the read() > > methods) > > > How to do the search is a much more complicated, general question > > probably not suitable specifically to the Android forums -- do you > > have more specifics about how the search will work? > > > --Ben > > > On Sep 16, 8:22 pm, MarQuel Middleton <[email protected]> wrote: > > > > Hello im trying to make a application where you can search for > > > something and download load it.... for example i want it to be > > > connected to my website and you can type one of my ROM names and it > > > will show a list view of all my ROMs or themes then i can select one > > > and download it --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---

