如何Date
动态转换为乌克兰语。
我正在使用这段代码:
final SimpleDateFormat dateFormat = new SimpleDateFormat("MMMM, yyyy");
final Date date = calendar.getTime();
final TextView chosenMonth = (TextView) findViewById(R.id.chosenMonth);
chosenMonth.setText(dateFormat.format(date));
将日期格式化为“2013 年 9 月”。此文本语言是设备语言,但我需要格式化此日期并仅以乌克兰语显示。
我尝试使用Locale
类来实现这一点,但 UA 语言没有常量。