I have a firemonkey multi-device project in Delphi XE8 where I've added a TSearchBox to my TListBox. Only on Android the SearchBox is placed in front of my TListBoxItems. On windows and iOS it displays the searchbox above all the lisboxitems and always stays on top even if you scroll down.
I am using a Nexus 7 with android 5.1.1
In the image below you can see the searchbox in front of the top listboxitem:
How do i get this with android?
UPDATE
I have created a toolbar above my TListBox and added a searchBox into it at runtime. This way the searchBox is always above the Items but i can't search in the listBox. How do i set it to check the text of the ListBoxItems?
UPDATE 2
I've made a new test project an it seems to work correctly in that project. Now i've tested a bit with the custom style I use and that seems to be the problem. The only problem is that I use a Stylebook to set all the styles in my project and I don't know how to exclude the ListBox and it's items from this.
UPDATE 3
I've deleted the listbox and listboxitem styles from the .style file I use in my StyleBook. This has solved the problem. Only problem I now have is that the TListBoxItem text is displayed. I make custom listboxitems with labels in order to align them a sertain way i want as you can see in the picture below. But in order to be able to search trough the items i need to set the text of the items. So the text is displayed above the labels i set in the item.
Is there a way to set the listboxitem text to invisible? I've already tried to change the color to the same color as the background but this doesn't work and also to set the font size to 0 and this also doesn't work.