Well that was what I did in first place I took my Android and changed it according to this example.
Checked again... example works mine project dont..
Finally I found that the Panel that encapsulating this view is stealing the clicks.. so for purpose of testing I comented click function on parent panel.
And I found out that the click on
	
	
	
	
	
	
	
	
	
		Private Sub lv_SelectedChanged (SectionIndex As Int, Cell As TableCell)
	 
	
	
		
	
 really doesnt work 
The changed class AutocomleteView is working - tested in example.
Autocomplete works it suggest the things...
Just cant click on any of the items...
	
	
	
	
	
	
	
	
	
		Sub NaseptavacShow (misto As String)
    'PageObjednavka.RootPanel.LoadLayout("naseptavac")
    NaseptNoClickPnl.LoadLayout("naseptavac")
    NaseptNoClickPnl.Visible = True
    NaseptNoClickPnl.Alpha = 1
  
    If misto = "nastup" Then
      
        NaseptNastupPnl.BringToFront
        NaseptNastupPnl.Visible = True
        PlacesAutocompleteView1.et.Visible = True
        PlacesAutocompleteView1.et.RequestFocus
        ' tried but it doesnt work
        PlacesAutocompleteView1.lv.BringToFront
        PlacesAutocompleteView1.lv.RequestFocus
    End If
End Sub
	 
	
	
		
	
 
except of how I load / display the layouts the code looks the same to me
NaseptNastupPnl is the Parent panel for the autocomplete
any ideas ?