How to format date and time in Android?

前端 未结 24 1321
面向向阳花
面向向阳花 2020-11-22 00:51

How to format correctly according to the device configuration date and time when having a year, month, day, hour and minute?

24条回答
  •  别那么骄傲
    2020-11-22 01:08

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

提交回复
热议问题