Android Question How to hide menu list and reload it again on a tabstrip listview

Makumbi

Well-Known Member
Licensed User
How can i clear and read the list view i items when and different tabstrip is open . currently when i open on tabstrip the old layout display remains yet yet i wanted it to hide automatically and then reload its self when i have clicked on it thanks for your effort
currently these are the codes i was trying out also find attached sample

B4X:
Sub ParentProf_ItemClick (Position As Int, Value As Object)
    If Value =  "Profile" Then
                StartActivity(Registrationstatus)
                Else
        If Value="Change Number" Then
            StartActivity(Numberchange)
            End If
          
        End If

  
End Sub

Sub Parentaccount_ItemClick (Position As Int, Value As Object)
    If Value="Check Balance" Then
        Parentaccount.Clear
        Activity.LoadLayout("Main")
        Activity.Title="Provisional Balances"
        Sleep(10)
        'accountprocess
      
        ShowTable
    End If
 

Attachments

  • Screenshot_1585842185.png
    Screenshot_1585842185.png
    50.8 KB · Views: 144
  • Screenshot_1585842089.png
    Screenshot_1585842089.png
    71.7 KB · Views: 133
  • Backup TabStrip 2020-03-30 00.05.zip
    169.5 KB · Views: 121
Last edited:
Top