To display the current date function:
Calendar c = Calendar.getInstance();
SimpleDateFormat df = new SimpleDateFormat("dd-MMM-yyyy");
String date = df.format(c.getTime());
Date.setText(date);
You must want to import
import java.text.SimpleDateFormat; import java.util.Calendar;
You must want to use
TextView Date;
Date = (TextView) findViewById(R.id.Date);