Private Sub clvExample_ItemClick(Index As Int, Value As Object)
Private valmap As Map = Value
Log(Index & " = " & valmap.Get("data"))
Dim rdo As B4XRadioButton = valmap.Get("rb")
If(prevrb <> Null And prevrb.IsInitialized) Then
Private p2 As B4XView = prevrb.mBase.parent
p2.SetColorAndBorder( xui.Color_RGB( 241, 215, 177 ), 2dip, xui.Color_RGB(255, 255, 255), 6dip)
' prevrb.Checked = False
End If
Dim p2 As B4XView = rdo.mBase.Parent
p2.SetColorAndBorder( xui.Color_RGB( 241, 215, 177 ), 2dip, xui.Color_RGB(210, 0, 35), 6dip)
prevrb = rdo
' rdo.Checked = True
End Sub