导航抽屉速度慢,视图复杂

时间:2013-11-23 16:15:38

标签: android performance view android-fragments navigation-drawer

在我的应用程序中,我使用导航抽屉,它工作得非常好。但是如果要显示的片段包含很多TextView,ImageView和Layout,当我单击该项时,视图就会出现故障。我会改善这种滞后。我的Galaxy Nexus和Nexus 4的效果是一样的,所以我认为问题在于我同时有2个命令。

  //On item click - First comand (Close Drawer) 
  mDrawerList.setItemChecked(position, true);
  setTitle(mStringTitles[position]);
  mDrawerLayout.closeDrawer(mDrawerView);

    // Second comand (Replace Fragment)        
    getFragmentManager()
   .beginTransaction()
   .replace(R.id.firts_view, new FragmentNew())
   .commit();

所以我想我会在菜单关闭后更换片段..任何想法?

2 个答案:

答案 0 :(得分:7)

作为documentation says

Avoid performing expensive operations such as layout during animation as it can cause stuttering;
try to perform expensive operations during the STATE_IDLE state.

你可以做的是,你的抽屉有一个事件监听器,并在onDrawerClosed回调(example here)中进行片段操作。

答案 1 :(得分:0)

我发现如果你在onCreateView()方法中加载片段中的视图,它将减慢片段加载速度。尝试在onStart()方法中加载与片段相关的视图。