Android Question CLVTree does not display the text

IdasI4A

Active Member
Licensed User
Longtime User
I'm trying to use CLVTree, but it doesn't show me the text, it's like painting it white on white.
I've tried changing the colours, but I can't get the text to show. However, if I click on the Debug window, the text appears.
Can anyone help me?
Thank you.
I attach the project
 

Attachments

  • arbol.zip
    22 KB · Views: 139

Mahares

Expert
Licensed User
Longtime User
Can anyone help me?
Your problem was simple but elusive. Here it is:
This line:
B4X:
Private Sub CLVIndice_VisibleRangeChanged (FirstIndex As Int, LastIndex As Int)
Should be:
B4X:
Private Sub CLV_VisibleRangeChanged (FirstIndex As Int, LastIndex As Int)
 
Upvote 1

IdasI4A

Active Member
Licensed User
Longtime User
It works. Thank you very much, I've been looking for a whole day and I didn't see that detail. Thank you very much again.
 
Upvote 0
Top