私はこれを試しましたint newHoursValue =(now.get(Calendar.HOUR_OF_DAY); int newMintsValue = (now.get(Calendar.MINUTE);
アンドロイドスタジオで別々に時間と分を取得する方法は?
しかし実際の時間は分で不一致ですが、24時間クロックでは機能しません。私は24時間と12時間形式で互換性のあるものを手に入れたいです。助けてください。
私はこれを試しましたint newHoursValue =(now.get(Calendar.HOUR_OF_DAY); int newMintsValue = (now.get(Calendar.MINUTE);
アンドロイドスタジオで別々に時間と分を取得する方法は?
しかし実際の時間は分で不一致ですが、24時間クロックでは機能しません。私は24時間と12時間形式で互換性のあるものを手に入れたいです。助けてください。
HOUR_OF_DAYはあなたがどちらか
String curTime = String.format("%02d:%02d", hrs, mnts);
または
SimpleDateFormat df = new SimpleDateFormat("hh:mm");
//これを行うを使用することができる分、先行ゼロと時間を返します。 。 。 日付currentDate = new Date();
/*for 24 hours format*/
SimpleDateFormat simpleDate1 = new SimpleDateFormat("HH");
String hours24 = simpleDate1.format(currentDate);
/*for 12 hours format*/
SimpleDateFormat simpleDate2 = new SimpleDateFormat("hh");
String hours12 = simpleDate2.format(currentDate);
/*for minutes*/
SimpleDateFormat simpleDate3 = new SimpleDateFormat("mm");
String minutes = simpleDate3.format(currentDate);
重複? https://stackoverflow.com/q/22525961/2655092 – IddoE