I have this:
Date date = new Date();
SimpleDateFormat curFormater = new SimpleDateFormat("EEEE, MMMM dd, yyyy");
String dateStr = curFormater.format(date);
setListAdapter(new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1, new String [] {dateStr}));
But it only displays once, I want to make it into listview. Aany ideas? Thx.
Try something like this…