Display date AND time in user locale

后端 未结 2 1018
小鲜肉
小鲜肉 2021-02-07 10:13

I know I can use android.text.format.DateFormat.getDateFormat() to format my dates, and android.text.format.DateFormat.getTimeFormat to format my times

2条回答
  •  余生分开走
    2021-02-07 10:33

    Do you need the String representation only? If yes, please have a look at
    DateUtils.formatDateTime(Context context, long millis, int flags):

    public static String formatDateTime (Context context, long millis, int flags)
    

    in: android.text.format.DateUtils

提交回复
热议问题