Android Question Customlistview questions

liurenwoxing

Member
Licensed User
Hello ,

When i use the Customlistview ,how can i get or set each item's lable,button,imageview attribute?​
 

ronell

Well-Known Member
Licensed User
Longtime User
create your own layout and add views to it , set the views attribute and name the layout "clv_layout"
now load that layout in a panel
B4X:
panel1.LoadLayout("clv_layout")

then add the panel in clv as custom item
B4X:
clv.Add(panel1, 50dip, "value")
 
Upvote 0
Top