navigation-keep-fragment-sample
navigation-keep-fragment-sample copied to clipboard
findNavController().popBackStack() is not working
Hi, When i try to pop back, it is not working on keep_state_working
static { try { sStack = FragmentNavigator.class.getDeclaredField("mBackStack"); sStack.setAccessible(true); } catch (NoSuchFieldException e) { e.printStackTrace(); } } if (sStack != null) { try { mBackStack = (ArrayDeque<Integer>) sStack.get(this); } catch (IllegalAccessException e) { e.printStackTrace(); } }
it works