Liu Ye Dong

Results 4 comments of Liu Ye Dong

Glide Version: 4.13.2 Same NPE on GifFrameLoader.onFrameReady(GifFrameLoader.java:287)

This is my local `monkeyrunner.bat`, it works for me: ```bat rem don't modify the caller's environment setlocal rem Set up prog to be the path of this script, including following...

@LuckyJayce 请问 `FragmentListPageAdapter.finishUpdate` 中为什么要调用 `mFragmentManager.executePendingTransactions()` 呢? 我不明白这里为什么和官方 support 库中的实现不同。 ``` public void finishUpdate(ViewGroup container) { if (mCurTransaction != null) { mCurTransaction.commitAllowingStateLoss(); mCurTransaction = null; mFragmentManager.executePendingTransactions(); } } ``` 官方 support...

@LuckyJayce 我知道了,它们的行为是基本一致的。`commitNowAllowingStateLoss()` 也会立即执行当前 transaction。