Get actual date
/*
* Set actual date on textViewDate *********************************************
*/
TextView dateTv = (TextView)findViewById(R.id.textViewDate);
Calendar c = Calendar.getInstance();
SimpleDateFormat df = new SimpleDateFormat("dd/MMM/yyyy");
formattedDate = df.format(c.getTime());
assert dateTv != null;
dateTv.setText(formattedDate);
// *****************************************************************************