Last active
August 22, 2022 11:02
-
-
Save fdoyle/233a7703077dbdcedca8 to your computer and use it in GitHub Desktop.
PageTransform + padding on viewpager doesn't work. this fixes it
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.foo.ui.view; | |
import android.content.Context; | |
import android.support.v4.view.ViewPager; | |
import android.util.AttributeSet; | |
import android.view.View; | |
/** | |
* Created by fdoyle on 11/2/15. | |
*/ | |
public class FixedTransformerViewPager extends ViewPager { | |
PageTransformer pageTransformer; | |
public FixedTransformerViewPager(Context context) { | |
super(context); | |
} | |
public FixedTransformerViewPager(Context context, AttributeSet attrs) { | |
super(context, attrs); | |
} | |
@Override | |
public void setPageTransformer(boolean reverseDrawingOrder, ViewPager.PageTransformer transformer) { | |
this.pageTransformer = transformer; | |
} | |
@Override | |
protected void onPageScrolled(int position, float offset, int offsetPixels) { | |
super.onPageScrolled(position, offset, offsetPixels); | |
fixedPageScrolled(position, offset, offsetPixels); | |
} | |
protected void fixedPageScrolled(int position, float offset, int offsetPixels) { | |
int clientWidth = getMeasuredWidth() - getPaddingLeft() - getPaddingRight(); | |
if (pageTransformer != null) { | |
final int scrollX = getScrollX(); | |
final int childCount = getChildCount(); | |
for (int i = 0; i < childCount; i++) { | |
final View child = getChildAt(i); | |
final ViewPager.LayoutParams lp = (ViewPager.LayoutParams) child.getLayoutParams(); | |
if (lp.isDecor) continue; | |
//note the getPaddingLeft() that now exists | |
final float transformPos = (float) (child.getLeft() - getPaddingLeft() - scrollX) / clientWidth; | |
pageTransformer.transformPage(child, transformPos); | |
} | |
} | |
} | |
} |
Great! Thank you for sharing!
I tried to fix transformer....but was too hard.
This code is the best solution!
A Real Hero. Thanks.
https://www.youtube.com/watch?v=-DSVDcw6iW8
You are actually a god
thx
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Just thought you should know you are my hero. Great work