Posts by Thialyson Martins • 1 point
1 post
-
0
votes3
answers11756
viewsA: Change format of a date from yyyy-MM-dd to dd-mm-yyyy
It worked for me. minhaTextView.setText(new SimpleDateFormat("dd/MM/yyyy HH:mm") .format(meuObjeto.getDate())); where "dd/MM/yyyy HH:mm" is the format I wish for and "meuObjeto.getDate()" is the…