Scrollview get the previous selection (?)

poseidon

Member
Licensed User
Longtime User
I have a SQLite cursor (records) & scrollview.

-for each record
-To scrollview Panel add
---Panel
-----Image
-----editText
-----editText
-----editText
-----transparent panel <--> PanelTop.Initialize("TouchPanel")


<*>

at TouchPanel_Click event
I use
B4X:
   Dim selected As Panel 
   selected = Sender
        selected.Color = Colors.ARGB(50,0,0,0) 'black semi-trans

so I make the panel 'selected', its ok.

<*>

When user select another panel should 'delesect' (make white) the previous one, how I can get the previous panel?
Unfortunately .GetView cant help me (?)

:sign0163:
 
Top