How can I edit the values of a custom view class added to a custom list view?
I have a CLV in which I add items, I load a layout to the panel created in the designer view. This layout contains Custom Views like for example CircularProgressBar.
But how can I pick the CLV item and edit the CircularProgressBar value?
This is how I thought it could be done but didn't work, since the p.getview(2) is a panel, not a CircularProgressBar type.
Thanks
I have a CLV in which I add items, I load a layout to the panel created in the designer view. This layout contains Custom Views like for example CircularProgressBar.
But how can I pick the CLV item and edit the CircularProgressBar value?
This is how I thought it could be done but didn't work, since the p.getview(2) is a panel, not a CircularProgressBar type.
B4X:
Dim circular As CircularProgressBar = p.GetView(2)
circular.Value = 56
Thanks