Android - delayed clicks in ListView

前端 未结 6 1571
忘了有多久
忘了有多久 2021-02-04 03:45

I have the following structure in my app:

FragmentActivity with ViewPager holding multiple fragments managed by FragmentStatePagerAdapter using

6条回答
  •  野的像风
    2021-02-04 04:24

    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.

提交回复
热议问题