B4A Tutorial StateManager - Helps managing Android applications settings and state - Erel    Sep 30, 2021   (22 reactions)   tags: save input state Edit: StateManager was written in 2011. I don't recommend using it for new projects. Use B4XPages + KVS2 instead.
StateManager is a code module which takes care of handling the application UI... B4A Question StateManager and CustomListview - LucaMs    Jun 29, 2018
If I have not made any mistakes, it seems to me that StateManager can not rebuild (save & restore) CustomListviews (let alone xCustomListviews) and their contents.... B4i Library [class] iStateManager - Similar to B4A StateManager - Erel    Feb 17, 2015   (1 reaction) This module is a port of B4A StateManager: https://www.b4x.com/android/forum/threads/9777/#content... it persists the data automatically.
Go over the B4A tutorial to learn about the state management.
You need to call StateManager.RestoreState in Application_Start and call StateManager.SaveState in... B4A Question B4XComboBox in StateManager class - peacemaker    Oct 18, 2018 Hi, All
Sub innerSaveState(v As View, list1 As List)
Dim data() As Object
If v Is EditText Then
Dim edit As EditText
edit = v
data = Array As Object(edit.Text, edit... B4A Question StateManager Class - DoEvents - LucaMs    Jul 28, 2017 Is there a way to remove DoEvents from StateManager Class?... B4A Question StateManager Not Working in my Layout - junaidahmed    Mar 12, 2018 ...
I have tried StateManager also but I have not solved this problem....
Sub Activity_Pause (UserClosed As Boolean)
If UserClosed Then
StateManager.ResetState("Main")
Else... B4A Question StateManager.SaveState for AutoTextSizeLabel and AutoCompleteEditText - peacemaker    Jun 29, 2015 Please, help to adjust the module... B4A Question StateManager does not have support for SwitchView ? - rleiman    Sep 9, 2014 Hi Everyone, Has anyone tried to use the SwitchView and StateManager together? Seems like it may need support for SwitchViews. I placed views such as toggle buttons, seek bars, edit boxes and several switch views. All of the views except the switch views retained their values after exiting the app with Activity.Finish and starting the app up again.... B4A Question StateManager - error - can't save app - rleiman    Sep 4, 2014 Hi Everyone, I started to use the StateManager. After downloading it and unzipping it, I copied StateManager.bas into my project where the other .bas files were located. I added it into the project as an existing module and it showed up as a tab so I could see the coding of the module. When I tried to save the project I got an error on the If statement. Is this module incomplete? This is the If statement that gave the error: If Settings.IsInitialized = False Then This is the Sub that has... B4A Question [SOLVED] Crash on Statemanager - agraham (first post)    Mar 14, 2022   (1 reaction) "Else If v Is Panel" code. It might be that StateManager can't cope with a CustomList view. as it was written years ago. Erel says at the top of the StateManager thread
Edit: StateManager... Page: 1   2   3   4   5   |