Hello,
Suppose the code below produces multiple rows of two side-by-side ImageViews, how do I find which objects HasFocus if one of the ImageViews is pressed by a user?
Thanks,
Gregg
Dim links As List
Dim clv As CustomListView
....
....
Activity.AddView (clv.AsView, 0%x, 0%y, 100%x, 100%y)
For Each link As String In links
....
....
Dim p As Panel
Dim ImageView1 As ImageView
Dim ImageView2 As ImageView
clv.Add(p, 100dip, link)
p.AddView (ImageView1, 0dip, 0dip, 300dip, 150dip)
p.AddView (ImageView2, 0dip, 150dip, 300dip, 150dip)
.....
.....
Next
....
....
Suppose the code below produces multiple rows of two side-by-side ImageViews, how do I find which objects HasFocus if one of the ImageViews is pressed by a user?
Thanks,
Gregg
Dim links As List
Dim clv As CustomListView
....
....
Activity.AddView (clv.AsView, 0%x, 0%y, 100%x, 100%y)
For Each link As String In links
....
....
Dim p As Panel
Dim ImageView1 As ImageView
Dim ImageView2 As ImageView
clv.Add(p, 100dip, link)
p.AddView (ImageView1, 0dip, 0dip, 300dip, 150dip)
p.AddView (ImageView2, 0dip, 150dip, 300dip, 150dip)
.....
.....
Next
....
....