If I want to change the value of the radio button below, how would I do this?
When I try...
chk.Checked = False
I am getting a error:
java.lang.ClassCastException: android.widget.RadioButton cannot be cast to android.widget.CheckBox
Sub RadioButton1_CheckedChange(Checked As Boolean)
Dim index As Int= clv2.GetItemFromView(Sender)
Dim pnl As Panel = clv2.GetPanel(index)
Dim chk As CheckBox = pnl.GetView(2)
Msgbox($"Item value: ${clv2.GetValue(index)}
Check value: ${chk.Checked}"$, "")
chk.Checked = False
End Sub