Android Question Remove pink border between custom list view items

Devv

Active Member
Licensed User
Longtime User
hi
im using custom list view to add items
B4X:
clv2.Add(CreateListItem(Title, clv2.AsView.Width, 350dip), 350dip, imgname)

but there is a tirny pink border between items, how can i remove it or make it transparent ?

test.png
 

mangojack

Expert
Licensed User
Longtime User
If the CLV has been added via the designer then edit divider color & divider height in CLV custom view properties ..

If the CLV has been added via code these properties can be edited in the CustomListView class Initialize sub.
 
Upvote 0

Devv

Active Member
Licensed User
Longtime User
If the CLV has been added via the designer then edit divider color & divider height in CLV custom view properties ..

If the CLV has been added via code these properties can be edited in the CustomListView class Initialize sub.
Perfect thanks you
 
Upvote 0
Top