You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
Thanks for such a great library. I am using fragments along with tabs and placing this stepperview in one of the fragments. I would like to know how to reset the entire stepperview once the job is done and the user clicks finish button.
The text was updated successfully, but these errors were encountered:
Hello,
I'd like to thank you as well @drozdzynski for this great lib 🥇
But I think I'm facing a similar problem as the one reported in this issue.
I have a NavDrawer that handles several fragments. One of the fragments contains the StepperView with a few steps. It works great and looks awesome, but I face one problem: if the user leaves the current fragment and moves to another, and then comes back... the StepperView is not created from scratch. It looks like it saves some state and the initial steps appear collapsed.
Would you know how to reset the whole StepperView to the initial state when moving between fragments?
EDIT:
I found a way (not very beautiful though...) to accomplish the reset when moving to another fragment and coming back -> just removing the fragments which are set into each of the steps:
for(Fragment f:getActivity().getSupportFragmentManager().getFragments()){
if(f!=null &&
f instanceof MyFragment1 ||
f instanceof MyFragment2
getActivity().getSupportFragmentManager().beginTransaction().remove(f).commit();
}
With that, the StepperView is created and the onCreateView is called for each for the MyFragmentX and they are visible again.
Another possibility that may work is to just restart the whole fragment by detaching and attaching it again:
YourFragmentClass fragment = (YourFragmentClass)
getFragmentManager().findFragmentById(R.id.your_fragment_container_id)
getFragmentManager().beginTransaction()
.detach(fragment)
.attach(fragment)
.commit();
Hi,
Thanks for such a great library. I am using fragments along with tabs and placing this stepperview in one of the fragments. I would like to know how to reset the entire stepperview once the job is done and the user clicks finish button.
The text was updated successfully, but these errors were encountered: