Java Code Examples for android.view.View#setScrollX()
The following examples show how to use
android.view.View#setScrollX() .
These examples are extracted from open source projects.
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 Project: android_9.0.0_r45 File: ChangeScroll.java License: Apache License 2.0 | 6 votes |
@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 Project: Transitions-Everywhere File: ChangeScroll.java License: Apache License 2.0 | 6 votes |
@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 Project: PageTransformerHelp File: ParallaxTransformer.java License: Apache License 2.0 | 5 votes |
@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 Project: SimpleAdapterDemo File: PullToRefreshRecyclerView.java License: Apache License 2.0 | 4 votes |
@Override public void set(View object, Integer value) { object.setScrollX(value); }
Example 5
Source Project: imsdk-android File: ViewHelper.java License: MIT License | 4 votes |
static void setScrollX(View view, int scrollX) { view.setScrollX(scrollX); }
Example 6
Source Project: timecat File: ViewHelper.java License: Apache License 2.0 | 4 votes |
static void setScrollX(View view, int scrollX) { view.setScrollX(scrollX); }
Example 7
Source Project: android_additive_animations File: ScrollProperties.java License: Apache License 2.0 | 4 votes |
@Override public void set(View object, Float value) { object.setScrollX(value.intValue()); }
Example 8
Source Project: android-project-wo2b File: ViewHelper.java License: Apache License 2.0 | 4 votes |
static void setScrollX(View view, int scrollX) { view.setScrollX(scrollX); }
Example 9
Source Project: MiBandDecompiled File: a.java License: Apache License 2.0 | 4 votes |
static void a(View view, int i1) { view.setScrollX(i1); }
Example 10
Source Project: Mover File: ViewHelper.java License: Apache License 2.0 | 4 votes |
static void setScrollX(View view, int scrollX) { view.setScrollX(scrollX); }
Example 11
Source Project: XDroidAnimation File: ViewHelper.java License: Apache License 2.0 | 4 votes |
public static void setScrollX(View view, int scrollX) { view.setScrollX(scrollX); }
Example 12
Source Project: KJFrameForAndroid File: ViewHelper.java License: Apache License 2.0 | 4 votes |
static void setScrollX(View view, int scrollX) { if (SystemTool.getSDKVersion() > 11) { view.setScrollX(scrollX); } }
Example 13
Source Project: UltimateAndroid File: ViewHelper.java License: Apache License 2.0 | 4 votes |
static void setScrollX(View view, int scrollX) { view.setScrollX(scrollX); }
Example 14
Source Project: Auie File: UEViewHelper.java License: GNU General Public License v2.0 | 4 votes |
static void setScrollX(View view, int scrollX) { view.setScrollX(scrollX); }
Example 15
Source Project: CircularReveal File: DynamicAnimation.java License: MIT License | 4 votes |
@Override public void setValue(View view, float value) { view.setScrollX((int) value); }
Example 16
Source Project: DevUtils File: ViewUtils.java License: Apache License 2.0 | 2 votes |
/** * 设置 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; }