How Can I Logout From My Application And Refresh On Android?
I am new in android, I need to ask this question. I build some android applications that implements the TabLayout, so every activity is held by every tab on my app. But before it,
Solution 1:
I remove all tabs when I want to logout and recreate them with new credentials.
getTabHost().clearAllTabs();
Post a Comment for "How Can I Logout From My Application And Refresh On Android?"