redon13
6/18/2016 - 12:59 PM

Get actual date

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);

        //  *****************************************************************************