Android how to customize date in listview -
i want show date current date on words in list view .how customize date.could please 1 tell me.for example when u booking ticket in railways it's showing current date on-wards.like want implement.
![enter image description here][1] [1]: http://i.stack.imgur.com/3npxa.png
use simpledateformat example
date d = new date(); simpledateformat simpledateformat=new simpledateformat("c - llll"); string formatteddate = simpledateformat.format(d);//mon - june format check formats (yyyy,dd ...) in simpledateformat
hope help.
Comments
Post a Comment