mirror of
https://github.com/SimpleMobileTools/Simple-Clock.git
synced 2025-04-04 05:41:03 +02:00
make sure the date gets updated properly at midnight
This commit is contained in:
parent
40cee86c0d
commit
b7bb078b98
@ -13,7 +13,7 @@ import java.util.*
|
|||||||
class ClockFragment(context: Context, attributeSet: AttributeSet) : RelativeLayout(context, attributeSet) {
|
class ClockFragment(context: Context, attributeSet: AttributeSet) : RelativeLayout(context, attributeSet) {
|
||||||
private val ONE_SECOND = 1000L
|
private val ONE_SECOND = 1000L
|
||||||
private var passedSeconds = 0
|
private var passedSeconds = 0
|
||||||
private val calendar = Calendar.getInstance()
|
private var calendar = Calendar.getInstance()
|
||||||
|
|
||||||
private val updateHandler = Handler()
|
private val updateHandler = Handler()
|
||||||
|
|
||||||
@ -52,6 +52,7 @@ class ClockFragment(context: Context, attributeSet: AttributeSet) : RelativeLayo
|
|||||||
}
|
}
|
||||||
|
|
||||||
private fun updateDate() {
|
private fun updateDate() {
|
||||||
|
calendar = Calendar.getInstance()
|
||||||
val dayOfWeek = (calendar.get(Calendar.DAY_OF_WEEK) + 5) % 7 // make sure index 0 means monday
|
val dayOfWeek = (calendar.get(Calendar.DAY_OF_WEEK) + 5) % 7 // make sure index 0 means monday
|
||||||
val dayOfMonth = calendar.get(Calendar.DAY_OF_MONTH)
|
val dayOfMonth = calendar.get(Calendar.DAY_OF_MONTH)
|
||||||
val month = calendar.get(Calendar.MONTH)
|
val month = calendar.get(Calendar.MONTH)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user