I have a normal NavigationDrawer with different fragments :
- News
- other Stuff 1
- other Stuff 2
- Setting
The problem :
The NewsFragment contains a SwipeRefreshLayout. It works great the first time I refresh.
I can change fragment to other Stuff 1 and 2 and Setting. So I come back to NewsFragment.
And now when I refresh, the fragment freezes.
The drawerLayout works correctly (open/close, even the ActionBar Title change) but the main fragment stay at NewsFragment and I can't scroll. But the scollListner works (I have log) but the view doesn"t change.
No refreshView (top of the swipeRefreshLayout), no scroll, no responding button (on focus, onclick) but only visually.
Actually, it's like a Responding Fragment is behind the frozen fragment.
Also I have this error in ADBLog :
SwipeRefreshLayout﹕ Got ACTION_MOVE event but don't have an active pointer id.
Any idea ??
I can post code if you ask.