我只为格鲁吉亚日期创建了一个数据库。在我的 android 应用程序的主页中,我想同时显示格鲁吉亚和回历日期(伊斯兰)。我该如何编写回历代码?
我的格鲁吉亚代码是
void getDate()
{
Date d=new Date();
CharSequence s = DateFormat.format("EEEE, MMMM d, yyyy", d.getTime());
miladiView.setText(s);// the name of the field that displays georgian date
}