Android Question xCustomListView selected rows [Solved]

jcesar

Active Member
Licensed User
Longtime User
Hi

Its there multiselection in a xCLV ?

I'm asking this because all rows stay selected after a touch event. See image.
 

Attachments

  • Screenshot_20190307-163055.png
    Screenshot_20190307-163055.png
    179.9 KB · Views: 124

jcesar

Active Member
Licensed User
Longtime User
and what are you doing in the touchevent? Maybe changing the color of the touched panel?

Hi DonManfred

i just call other activity with record details.

B4X:
Sub clv1_ItemClick (Index As Int, Value As Object)
    
    Main.ID_CLIENTE = Value
    StartActivity(DetCliente)
    
End Sub
 
Upvote 0
Top