B4X:
Sub Globals
Private xList As ListView
End Sub
Sub Activity_Create(FirstTime As Boolean)
Activity.Color = Colors.White
xList.Initialize("ListOfContacts")
xList.Color = Colors.White
xList.TwoLinesLayout.Label.TextColor = Colors.Black
Activity.AddView(xList,0,0,100%x,92%y)
End Sub
Sub SomeSub
---> This one works as expected xList.AddTwoLines2(rs.GetString("Celular"),rs.GetString("Name"),rs.GetString("Celular"))
---> This one does NOT xList.AddTwoLinesAndBitmap2(rs.GetString("Celular"),rs.GetString("Name"),LoadBitmap(File.DirAssets,"logo.png"),rs.GetString("Celular"))
End Sub