LWGShane Well-Known Member Licensed User Longtime User Dec 9, 2023 #1 In the attached image, how do I programmatically change the unused area (the red circled white area) of CustomListView? Attachments 1702132661867.png 47.2 KB · Views: 130
In the attached image, how do I programmatically change the unused area (the red circled white area) of CustomListView?
mangojack Expert Licensed User Longtime User Dec 10, 2023 #2 LWGShane said: In the attached image, how do I programmatically change the unused area (the red circled white area) of CustomListView? Click to expand... B4X: XUIViewsUtils.AddStubToCLVIfNeeded(CustomListView1,xui.Color_Green) ps: XUIViewsUtils is included in the XUIViews lib Last edited: Dec 10, 2023 Upvote 1
LWGShane said: In the attached image, how do I programmatically change the unused area (the red circled white area) of CustomListView? Click to expand... B4X: XUIViewsUtils.AddStubToCLVIfNeeded(CustomListView1,xui.Color_Green) ps: XUIViewsUtils is included in the XUIViews lib
Erel B4X founder Staff member Licensed User Longtime User Dec 10, 2023 #3 Not exactly related but if you want to make the list transparent: https://www.b4x.com/android/forum/t...ound-and-scrollbar-visibility.101740/#content Upvote 0
Not exactly related but if you want to make the list transparent: https://www.b4x.com/android/forum/t...ound-and-scrollbar-visibility.101740/#content
Alexander Stolte Expert Licensed User Longtime User Dec 10, 2023 #4 B4X: xclv_CountryPicker_List.sv.As(ScrollPane).Style="-fx-background:transparent;-fx-background-color:transparent;" Upvote 0
B4X: xclv_CountryPicker_List.sv.As(ScrollPane).Style="-fx-background:transparent;-fx-background-color:transparent;"
LWGShane Well-Known Member Licensed User Longtime User Dec 10, 2023 #5 mangojack said: XUIViewsUtils.AddStubToCLVIfNeeded(CustomListView1,xui.Color_Green) Click to expand... This is a perfect cross platform solution! Thank you Upvote 0
mangojack said: XUIViewsUtils.AddStubToCLVIfNeeded(CustomListView1,xui.Color_Green) Click to expand... This is a perfect cross platform solution! Thank you