グルジアの日付のみのデータベースを作成しました。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
}