RK
Size: a a a
00
(
var a: Int
get() = ...
set(...) { ... }
00
var a: Int
get() = ...
set(...) { ... }
M
var mTimePicker:TimePicker = view!!.findViewById(R.id.edit). Выдает ошибку Expression 'hour' of type 'Int' cannot be invoked as a function. The function 'invoke()' is not found. Подскажите пожалуйста.
mTimePicker.hour(hours)
mTimePicker.minute(minutes)
n
var mTimePicker:TimePicker = view!!.findViewById(R.id.edit). Выдает ошибку Expression 'hour' of type 'Int' cannot be invoked as a function. The function 'invoke()' is not found. Подскажите пожалуйста.
mTimePicker.hour(hours)
mTimePicker.minute(minutes)
M
VM
VM
private val calendarView = view?.findViewById<CalendarView?>(R.id.calendarView)
AM
AM
VM
AM
AM
VM
AM
VM
private lateinit var calendarView: CalendarView
calendarView = view!!.findViewById<CalendarView>(R.id.calendarView)
AM
private lateinit var calendarView: CalendarView
calendarView = view!!.findViewById<CalendarView>(R.id.calendarView)
VM