How can i changes CustomListView TextItem Heigh?
This works but it is animated and slow
with this i can change the Label.Height
but not the Panel.Height
I need a TextItem with Panel/Label Height of 30dip
How can i solved it?
This works but it is animated and slow
B4X:
Dim clv As CustomListView
clv.AddTextItem( "Text", 0)
clv.ResizeItem( clv.Size -1, 30dip)
with this i can change the Label.Height
but not the Panel.Height
B4X:
Dim p As B4XView = clv.GetPanel( clv.Size -1)
p.Height = 30dip 'dont work
p.GetView( 0).Height = 30dip 'works
I need a TextItem with Panel/Label Height of 30dip
How can i solved it?