We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
스위치 버튼 리스너 등록
private fun isSwitchOn() { binding.switchLock.setOnCheckedChangeListener { _, onSwitch -> if (onSwitch) { binding.imagebuttonResetting.visibility = View.VISIBLE } else { binding.imagebuttonResetting.visibility = View.INVISIBLE } } }