Will Wang

Results 5 comments of Will Wang

Same problem (getView continuously) when using android query or universal imageloader comment out 2 lines below in SwipeFlingAdapterView seems do some help ``` java ... if (mActiveCard != null &&...

Simply catch the exception works for me see also:https://github.com/chrisbanes/PhotoView/issues/31

i failed to do the same thing in getView() too. compromised, I set the Imageview height to windowHeight/2 android.view.ViewTreeObserver.addOnGlobalLayoutListener may also work,but i haven't tried.

一直使用的是app宿主工程中的proguard文件 “proguard-rules.pro“ ``` buildTypes { release { minifyEnabled true zipAlignEnabled true proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } debug { minifyEnabled false debuggable true proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } ``` 这个和我公共的library开了multiDex有关系吗, ``` multiDexEnabled...