[android-beginners] Count Down Timer in list view

2009-03-19 Thread AnuR
Hi, I want to add a count down timer in a list view. the time duration is got from an xml in the format (PnYnMnDTnHnMnS). I used joda-time.jar for parsing the time from Period. I used long totaltimeinmilliseconds = (H*24*60+M*60+S)*1000; new CountDownTimer(totaltimeinmilliseconds, 1000) {

[android-beginners] Cookie not enabled while using HttpPOST

2008-11-10 Thread AnuR
Hi, I wanted to login to a website thru my application, For that i used DefaultHttpClient client = new DefaultHttpClient(); HttpPost postmethod = new HttpPost(the url to submit the login data and related parametrs); //set header for the postmethos and executed the client, but I am getting the

[android-beginners] login to a web site from android application.

2008-10-30 Thread AnuR
Hi frnds, my application needs to login to a web site thru the application. How can i do it? for that I need to post the username ,password and some other data to the url. the code is as follows. I am using SDK 1.0 DefaultHttpClient httpclient = new DefaultHttpClient(); HttpPost httpost =

[android-beginners] login to a web site from android application.

2008-10-30 Thread AnuR
Hi frnds, my application needs to login to a web site thru the application. How can i do it? for that I need to post the username ,password and some other data to the url. the code is as follows. I am using SDK 1.0 DefaultHttpClient httpclient = new DefaultHttpClient(); HttpPost httpost = new

[android-beginners] Submitting user login details to a web site

2008-07-11 Thread AnuR
the userid and password to that site and validate it... thanks and regards ANUR --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Beginners group. To post to this group, send email to android-beginners

[android-beginners] looping a textview in android

2008-06-24 Thread AnuR
loop the text view.. thanks and regards ANUR --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Beginners group. To post to this group, send email to android-beginners@googlegroups.com To unsubscribe from

[android-beginners] how to loop text view

2008-06-24 Thread AnuR
hi frndz I am new to android.. i want to create a list of nodes from an xml file aftr a text box.. i think i cant use the listview as it extends ListActivity and the EditText needs to ectend Activity... so how can i loop a textview... it is to create a search functionality thnks AnuR