在做箭頭選擇動畫的時候
ivArrow.animate().rotationBy(180).setDuration(300).start();
我在使用 mDrawerLayoutdapter.notifyItemChanged(position); 時候箭頭選擇很怪異 旋轉180 沒有過程動畫,抖抖就旋轉完成
結果我換成 mDrawerLayoutdapter.notifyDataSetChanged(); 就正常了;
ivArrow.animate().rotationBy(180).setDuration(300).start();
我在使用 mDrawerLayoutdapter.notifyItemChanged(position); 時候箭頭選擇很怪異 旋轉180 沒有過程動畫,抖抖就旋轉完成
結果我換成 mDrawerLayoutdapter.notifyDataSetChanged(); 就正常了;