how to update date and time in textview which is in listview for messages each time -


gregoriancalendar calcreationdate = new gregoriancalendar();   int intmilli = calcreationdate.get(calendar.millisecond);   int intseconds = calcreationdate.get(calendar.second);   calcreationdate.add(calendar.millisecond, (-1*intmilli));   calcreationdate.add(calendar.second, -1*intseconds);   calcreationdate.add(calendar.minute, 1);    date datestartdate = calcreationdate.gettime();  string time =datestartdate.tostring(); 


Comments

Popular posts from this blog

Change php variable from jquery value using ajax (same page) -

Pull out data related to my apps from Android Play Store and iOS App Store -

How can I fetch data from a web server in an android application? -