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.
トグルグループにたくさんの子ボタンがあります。そして、子の1つがクリックされるたびに、トグルグループ全体をクリックできないようにします。
OnButtonCheckedListener()リスナーを使用できます:
OnButtonCheckedListener()
materialButtonToggleGroup.addOnButtonCheckedListener { group, checkedId, isChecked -> for (i in 0 until materialButtonToggleGroup.childCount) { materialButtonToggleGroup.getChildAt(i).isClickable = false } }