I am trying to get the date with this pattern - "dd/MM/yyyy". So far i've used SimpleDateFormat to achieve it, but now i need to also support Chinese in my app and it's not giving me the result i need.
I'm trying to make it look like the pattern with attention to the locale: English: 16/05/2016 Chinese: 2016年05月16日
I tried different options - android.text.format.DateUtils.formatDateTime android.text.format.DateFormat.getDateFormat
but couldn't get the result i wanted. Thanks