Jack Cheung

Results 11 comments of Jack Cheung

Another alternative is as: https://stackoverflow.com/a/36279773/504012

You can also set that in the layout, e.g.: ``` xml ``` reference: http://blog.marshalchen.com/UltimateRecyclerView/

Just an idea: would it work if I submit pull-request? (that may take some time, but just a possibility...)

@EricKuck are we expecting a new release including that fix soon?

@rossbacher : not sure if you are the right person to address to, or please help me to refer to the right person Wanna know when this fix will be...

@DMCApps I've setup a demonstration project to show the differences between the 2 versions: https://github.com/jackcsk/NavigationFragmentDemo

@DMCApps I've added the following to `SampleFragment.java`: ```java @Override public void onStart() { super.onStart(); Log.d(TAG, "onStart"); } @Override public void onStop() { Log.d(TAG, "onStop"); super.onStop(); } ``` and it shows...

After comparing 2.0 release with 1.0.0: If I add the code snippet from the patch file into `navigationfragment/common/core/StackManager.java`, the `onStart()` and `onStop()` methods works just like 1.0.0 release. [patch.diff.zip](https://github.com/DMCApps/NavigationFragment/files/1351546/patch.diff.zip) ```...