How to format correctly according to the device configuration date and time when having a year, month, day, hour and minute?
This code work for me!
Date d = new Date(); CharSequence s = android.text.format.DateFormat.format("MM-dd-yy hh-mm-ss",d.getTime()); Toast.makeText(this,s.toString(),Toast.LENGTH_SHORT).show();