DBILITY

독거 가능성 100% 노후에 라면값이라도 하게 센스를 발휘합시다!😅
Please click on the ad so that I can pay for ramen in my old age!
点击一下广告,让老后吃个泡面钱吧!
老後にラーメン代だけでもするように広告を一回クリックしてください。

안드로이드 CalendarView selected date 본문

android

안드로이드 CalendarView selected date

DBILITY 2024. 3. 26. 12:41
반응형

당연하게 getDate가 되는 줄 알았다. 그냥 현재 날짜였다.

setOnDateChangeListener를 구현해서 처리했다. 맞는지는 모르겠다. 그냥 된다.

calendarView.setOnDateChangeListener { view, year, month, dayOfMonth ->
    
    Log.d("setOnDateChangeListener","$year $month $dayOfMonth")
    
    val calendar = Calendar.getInstance(Locale.getDefault())
    calendar.set(year, month, dayOfMonth)
    //selectedDate = calendar.timeInMillis
    view.date = calendar.timeInMillis
    
}
반응형
Comments