Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
例
3:50 = これは GMT +2 の時刻で、24 時間までにスピナーの項目に入れました。 4:20~12:50
アイデアを共有していただきありがとうございます。
これにより、GMT+2 で現在の時間と分が取得されます。
TimeZone timeZone = new TimeZone(); timeZone.setOffset(2); Calendar calendar = Calendar.getInstance(timeZone); int hour = calendar.get(Calendar.HOUR_OF_DAY); int minute = calendar.get(Calendar.MINUTE);