Java Code Examples for android.view.View#setScrollX()

The following examples show how to use android.view.View#setScrollX() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: ChangeScroll.java    From android_9.0.0_r45 with Apache License 2.0 6 votes vote down vote up
@Override
public Animator createAnimator(ViewGroup sceneRoot, TransitionValues startValues,
        TransitionValues endValues) {
    if (startValues == null || endValues == null) {
        return null;
    }
    final View view = endValues.view;
    int startX = (Integer) startValues.values.get(PROPNAME_SCROLL_X);
    int endX = (Integer) endValues.values.get(PROPNAME_SCROLL_X);
    int startY = (Integer) startValues.values.get(PROPNAME_SCROLL_Y);
    int endY = (Integer) endValues.values.get(PROPNAME_SCROLL_Y);
    Animator scrollXAnimator = null;
    Animator scrollYAnimator = null;
    if (startX != endX) {
        view.setScrollX(startX);
        scrollXAnimator = ObjectAnimator.ofInt(view, "scrollX", startX, endX);
    }
    if (startY != endY) {
        view.setScrollY(startY);
        scrollYAnimator = ObjectAnimator.ofInt(view, "scrollY", startY, endY);
    }
    return TransitionUtils.mergeAnimators(scrollXAnimator, scrollYAnimator);
}
 
Example 2
Source File: ChangeScroll.java    From Transitions-Everywhere with Apache License 2.0 6 votes vote down vote up
@Nullable
@Override
public Animator createAnimator(@NonNull ViewGroup sceneRoot, @Nullable TransitionValues startValues,
                               @Nullable TransitionValues endValues) {
    if (startValues == null || endValues == null ||
            Build.VERSION.SDK_INT < Build.VERSION_CODES.ICE_CREAM_SANDWICH) {
        return null;
    }
    final View view = endValues.view;
    int startX = (Integer) startValues.values.get(PROPNAME_SCROLL_X);
    int endX = (Integer) endValues.values.get(PROPNAME_SCROLL_X);
    int startY = (Integer) startValues.values.get(PROPNAME_SCROLL_Y);
    int endY = (Integer) endValues.values.get(PROPNAME_SCROLL_Y);
    Animator scrollXAnimator = null;
    Animator scrollYAnimator = null;
    if (startX != endX) {
        view.setScrollX(startX);
        scrollXAnimator = ObjectAnimator.ofInt(view, "scrollX", startX, endX);
    }
    if (startY != endY) {
        view.setScrollY(startY);
        scrollYAnimator = ObjectAnimator.ofInt(view, "scrollY", startY, endY);
    }
    return TransitionUtils.mergeAnimators(scrollXAnimator, scrollYAnimator);
}
 
Example 3
Source File: ParallaxTransformer.java    From PageTransformerHelp with Apache License 2.0 5 votes vote down vote up
@Override
public void transformPage(View page, float position) {
    int width = page.getWidth();
    if (position < -1) {
        page.setScrollX((int) (width * 0.75 * -1));
    } else if (position <= 1) {
        if (position < 0) {
            page.setScrollX((int) (width * 0.75 * position));
        } else {
            page.setScrollX((int) (width * 0.75 * position));
        }
    } else {
        page.setScrollX((int) (width * 0.75));
    }
}
 
Example 4
Source File: PullToRefreshRecyclerView.java    From SimpleAdapterDemo with Apache License 2.0 4 votes vote down vote up
@Override
public void set(View object, Integer value) {
    object.setScrollX(value);
}
 
Example 5
Source File: ViewHelper.java    From imsdk-android with MIT License 4 votes vote down vote up
static void setScrollX(View view, int scrollX) {
    view.setScrollX(scrollX);
}
 
Example 6
Source File: ViewHelper.java    From timecat with Apache License 2.0 4 votes vote down vote up
static void setScrollX(View view, int scrollX) {
    view.setScrollX(scrollX);
}
 
Example 7
Source File: ScrollProperties.java    From android_additive_animations with Apache License 2.0 4 votes vote down vote up
@Override
public void set(View object, Float value) {
    object.setScrollX(value.intValue());
}
 
Example 8
Source File: ViewHelper.java    From android-project-wo2b with Apache License 2.0 4 votes vote down vote up
static void setScrollX(View view, int scrollX) {
    view.setScrollX(scrollX);
}
 
Example 9
Source File: a.java    From MiBandDecompiled with Apache License 2.0 4 votes vote down vote up
static void a(View view, int i1)
{
    view.setScrollX(i1);
}
 
Example 10
Source File: ViewHelper.java    From Mover with Apache License 2.0 4 votes vote down vote up
static void setScrollX(View view, int scrollX) {
    view.setScrollX(scrollX);
}
 
Example 11
Source File: ViewHelper.java    From XDroidAnimation with Apache License 2.0 4 votes vote down vote up
public static void setScrollX(View view, int scrollX) {
	view.setScrollX(scrollX);
}
 
Example 12
Source File: ViewHelper.java    From KJFrameForAndroid with Apache License 2.0 4 votes vote down vote up
static void setScrollX(View view, int scrollX) {
    if (SystemTool.getSDKVersion() > 11) {
        view.setScrollX(scrollX);
    }
}
 
Example 13
Source File: ViewHelper.java    From UltimateAndroid with Apache License 2.0 4 votes vote down vote up
static void setScrollX(View view, int scrollX) {
    view.setScrollX(scrollX);
}
 
Example 14
Source File: UEViewHelper.java    From Auie with GNU General Public License v2.0 4 votes vote down vote up
static void setScrollX(View view, int scrollX) {
    view.setScrollX(scrollX);
}
 
Example 15
Source File: DynamicAnimation.java    From CircularReveal with MIT License 4 votes vote down vote up
@Override
public void setValue(View view, float value) {
  view.setScrollX((int) value);
}
 
Example 16
Source File: ViewUtils.java    From DevUtils with Apache License 2.0 2 votes vote down vote up
/**
 * 设置 View 滑动的 X 轴坐标
 * @param view  {@link View}
 * @param value X 轴坐标
 * @return {@link View}
 */
public static View setScrollX(final View view, final int value) {
    if (view != null) view.setScrollX(value);
    return view;
}