-
Notifications
You must be signed in to change notification settings - Fork 532
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Problem with activity transitions & ViewPager #76
Comments
yes, I've noticed that either. I'll try to see what's happening during a transition |
I got the solution from here: http://stackoverflow.com/questions/13860832/viewpager-imageview-zooming-issue |
@sephiroth74 I have this problem too. Any idea how we can fix it? |
@mecid take a look at this http://stackoverflow.com/questions/13860832/viewpager-imageview-zooming-issue |
@tuanchauict not working for me. |
Any news on this? |
@sephiroth74 I have this problem too. Seems the problem is brought by ViewPager. More exactly, the problem is occurred when image is set while the fragment isn't visible. |
@sephiroth74 I'm investigating this issue. What I found is:
Than I extends the ImageViewTouch class and override this method: @Override
protected void onViewPortChanged(float left, float top, float right, float bottom) {
super.onViewPortChanged(0, top, right - left, bottom);
} the problem is fixed. So the code above is a workaround. The problem may be the incorrect base matrix. |
@xingrz works for me, thank you! |
No need to override ImageViewTouch. Wrapping the view into a FrameLayout does the trick for me: FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
/FrameLayout> |
@xingrz works for me too! thank u very much! |
Hi,
I am using ImageViewTouch inside ViewPager (as full screen gallery).
When I start my acitivity with transition, ViewPager displays correctly only first page - on every different i do not see image.
In earlier version of Your library ViewPager was initializing correctly, but there was problem with transition.
The text was updated successfully, but these errors were encountered: