[android-developers] Re: HttpURLConnection with POST method

2011-11-02 Thread jesb
> >                 int response = urlConnection.getResponseCode(); > > >                 // if resonse =HttpURLConnection.HTTP_OK = 200, then it > > > worked. > > > >                 InputStream in = new > > > BufferedInputStream(urlCo

[android-developers] Re: http connection to display a webpage

2011-08-30 Thread jesb
i was having the same problem. figured it out here. http://digitallibraryworld.com/?p=189 On Aug 9, 12:02 am, arun kumar wrote: > The backend database is MySQL and their web server is PHP...by using this > how can i get the webpage displaycan anyone give me guidance -- You received this me

[android-developers] Re: dispalying a webpage

2011-08-30 Thread jesb
try here http://digitallibraryworld.com/?p=189 On Aug 6, 2:11 am, arun kumar wrote: > Hi  i want to display a webpage in the using http connection..am new to > android and java so any one can give me guiadance how i can make this... > >    // TODO Auto-generated method stub >         super.on

[android-developers] Re: HttpURLConnection with POST method

2011-08-30 Thread jesb
i figured it out. http://digitallibraryworld.com/?p=189 On Aug 16, 3:21 pm, lbendlin wrote: > POST works very different from GET. You need to spend much more energy to > format the request body. You're missing the whole Content-Disposition: > form-data  and the delimiter definitions etc. > > your

[android-developers] debugging in eclipse and CONFIRM keyword???

2011-06-15 Thread jesb
Hello group, I'm a beginner in developing in android. I'm used to using visual studio for my IDE. here is a problem i'm having. When i launched an app in AVD, it keeps on forcing me to close. i tried to debug it using the debug feature in eclipse. i don't know if it's just me because i still know

[android-developers] Re: simple hello world app crashing with android 1.5

2011-06-02 Thread jesb
; > could your provide the code > > > the xml file along with java > > > On Fri, May 27, 2011 at 11:41 AM, jesb wrote: > > >> I'm very new in developing android. > > >> I'm basically following a book example from Android Development for > >

[android-developers] imageButton as global variable not working... why??

2011-06-02 Thread jesb
i'm very new to android, and basically modifying an app i find on textbook. This app contain a single ImageButton on the center of the screen. it will detect the ringer mode of the phone, and when clicked, it will change the ringer mode from silent to normal or normal to silent. i declare ImageBut

[android-developers] simple hello world app crashing with android 1.5

2011-05-30 Thread jesb
I'm very new in developing android. I'm basically following a book example from Android Development for dummies. It's just a simple hello world. I didn't even write any code at all. I just did this from eclipse: file, new, project, android project, specify android 1.5 target, and api level 3. Tha