Android Question ProdList_ItemClick not reacting

gruizelgruis

Member
Licensed User
Longtime User
Hello all,
It has been a while.

I have a question and I'm hoping for a simple answer.
I have created and array of listview's in code.

But how do i get the "item click" event working.

My list view is called "ProdList"
Dim ProdList () As ListView

In a sub

Dim ProdList(x) As ListView
ProdList(x).Initialize("LstProd")

'// and add the list to a panel
GroepPanel(x).AddView(ProdList(x), 20, 290,370, 150)

end sub

'// next the itemclick event does not respond.
sub ProdList_ItemClick (Position As Int, Value As Object)

please advice.

Regards Michael
 
Top