Android Question creating timer in every customlistview panle

azzam223

Active Member
Licensed User
Longtime User
hello I want To create timer for every panel in custom list view How I can Do that because when I create single timer for custom list view the timer only run for last panle I want to create timer that run in every panels in custom list view Let say if I have tabstrip in every custom list view I want To make timer for every tab strip How I can Do that
 

DonManfred

Expert
Licensed User
Longtime User
A timer is not bound to any view.
It is up to you to check the right things when a timer tick raises.

Maybe you should describe it more clearly what exactly you want archieve.
 
Upvote 0

azzam223

Active Member
Licensed User
Longtime User
thanks donmanfreed I mean I want make every tabstrip in the customlistview scroll like this

B4X:
If Tpspromotion.CurrentPage=lst.Size-1 Then
            Tpspromotion.ScrollTo(0,False)
            pos=0
            Else
                pos=pos+1
        Tpspromotion.ScrollTo(pos,False)
    End If

when I use this code only the last tabstrip is run but i want every tabstrip in customlistview
 
Upvote 0
Top