I have the following structure in my app:
FragmentActivity with ViewPager holding multiple fragments managed by FragmentStatePagerAdapter using
ViewPager
FragmentStatePagerAdapter
It seems you are executing some blocking process(like invoking webservices or opening files) in event thread, so your Event thread is blocked. If this is the case, Please process your blocking code into another thread than Event THread.