Navigation Drawer is slow with complex view

后端 未结 2 428
谎友^
谎友^ 2021-01-05 09:08

In my app i\'m using Navigation Drawer and it works very fine. But if the Fragment to show contains much TextView, ImageView and Layout, when i click the item, the view is g

2条回答
  •  生来不讨喜
    2021-01-05 09:41

    I have found that if you load the views in the fragment in the onCreateView() method it will slow down the fragment loading. Try loading the fragment related views in the onStart() method.

提交回复
热议问题