Sorry again what do you want to do !?
xTableLite does not show any image.
What image, where are they defined, where are they located, how is the display generated etc. etc. !!???
Please, please, to be efficient, explain in detail what you want to do, otherwise we are playing question/answer 'ping-pong'.
Every row represents an image. Maybe you remember using the following code in my starter module with this same project but B4A only from 2 months ago:
If File.Exists(ImagesDir, "R702.4.2.png") = False Then
File.Copy(File.DirAssets, "R702.4.2.png", ImagesDir, "R702.4.2.png") 'ignore
I tried your If file entry as a template with hundreds of images for a test and I'm not sure why but I struggled with getting all images to display. I also changed back and forth using IF True or if False to get them to display. I was also forced to put a large number of images into the files tab of the project and so on.
Here's how I attempted that with the B4A projects:
All in starter module.
If File.Exists(ImagesDir, "R702.4.2.png") = True Then
File.Copy(File.DirAssets, "R702.4.2.png", ImagesDir, "R702.4.2.png")
End If
If File.Exists(ImagesDir, "R403.3(2).png") = True Then
File.Copy(File.DirAssets, "R403.3(2).png", ImagesDir, "R403.3(2).png")
End If
If File.Exists(ImagesDir, "E3404.4.png") = True Then
File.Copy(File.DirAssets, "E3404.4.png", ImagesDir, "E3404.4.png")
End If
If File.Exists(ImagesDir, "R404.1.2(1).png") = True Then
File.Copy(File.DirAssets, "R404.1.2(1).png", ImagesDir, "R404.1.2(1).png")
End If
If File.Exists(ImagesDir, "R404.1.2(2).png") = True Then
File.Copy(File.DirAssets, "R404.1.2(2).png", ImagesDir, "R404.1.2(2).png")
End If
If File.Exists(ImagesDir, "502.3.3(1).png") = True Then
File.Copy(File.DirAssets, "502.3.3(1).png", ImagesDir, "502.3.3(1).png")
End If
If File.Exists(ImagesDir, "R602.10.1.3.png") = True Then
File.Copy(File.DirAssets, "R602.10.1.3.png", ImagesDir, "R602.10.1.3.png")
End If
If File.Exists(ImagesDir, "R602.10.3(1).png") = True Then
File.Copy(File.DirAssets, "R602.10.3(1).png", ImagesDir, "R602.10.3(1).png")
End If
If File.Exists(ImagesDir, "R602.10.3(2).png") = True Then
File.Copy(File.DirAssets, "R602.10.3(2).png", ImagesDir, "R602.10.3(2).png")
End If
If File.Exists(ImagesDir, "R602.10.3(3).png") = True Then
File.Copy(File.DirAssets, "R602.10.3(3).png", ImagesDir, "R602.10.3(3).png")
End If
If File.Exists(ImagesDir, "R602.10.3(3) cont.png") = True Then
File.Copy(File.DirAssets, "R602.10.3(3) cont.png", ImagesDir, "R602.10.3(3) cont.png")
End If
If File.Exists(ImagesDir, "R602.10.3(4).png") = True Then
File.Copy(File.DirAssets, "R602.10.3(4).png", ImagesDir, "R602.10.3(4).png")
End If
'If File.Exists(ImagesDir, ".png") = True Then
' File.Copy(File.DirAssets, ".png", ImagesDir, ".png")
' End If
'If File.Exists(ImagesDir, ".png") = True Then
' File.Copy(File.DirAssets, ".png", ImagesDir, ".png")
' End If
If File.Exists(ImagesDir, "R602.10.5.png") = True Then
File.Copy(File.DirAssets, "R602.10.5.png", ImagesDir, "R602.10.5.png")
End If
If File.Exists(ImagesDir, "R602.10.5.2.png") = True Then
File.Copy(File.DirAssets, "R602.10.5.2.png", ImagesDir, "R602.10.5.2.png")
End If
If File.Exists(ImagesDir, "R602.10.6.1.png") = True Then
File.Copy(File.DirAssets, "R602.10.6.1.png", ImagesDir, "R602.10.6.1.png")
End If
If File.Exists(ImagesDir, "R602.10.6.4.png") = True Then
File.Copy(File.DirAssets, "R602.10.6.4.png", ImagesDir, "R602.10.6.4.png")
End If
If File.Exists(ImagesDir, "R602.10.6.5.png") = True Then
File.Copy(File.DirAssets, "R602.10.6.5.png", ImagesDir, "R602.10.6.5.png")
End If
If File.Exists(ImagesDir, "R602.10.4.png") = True Then
File.Copy(File.DirAssets, "R602.10.4.png", ImagesDir, "R602.10.4.png")
End If