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.
Javaファイルでラジオグループを設定する際に、setOnCheckedChangeListenerメソッドを使用して渡そうとすると、コンパウンドボタンが呼び出されますが、ラジオボタンが必要です。どうすればこれを解決できますか?
私があなたの問題を理解しているなら、これが解決策です:
CompoundButtonリスナーメソッドで受け取るのは、キャストRadioButtonできるようにするためです。
CompoundButton
RadioButton
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked){ RadioButton radioButton = (RadioButton)buttonView; ... }