当前位置: 首页>>代码示例>>Java>>正文


Java ParallaxHelper类代码示例

本文整理汇总了Java中uk.co.chrisjenx.paralloid.utils.ParallaxHelper的典型用法代码示例。如果您正苦于以下问题:Java ParallaxHelper类的具体用法?Java ParallaxHelper怎么用?Java ParallaxHelper使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


ParallaxHelper类属于uk.co.chrisjenx.paralloid.utils包,在下文中一共展示了ParallaxHelper类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: doScrollViews

import uk.co.chrisjenx.paralloid.utils.ParallaxHelper; //导入依赖的package包/类
private final void doScrollViews(final int x, final int y) {
    if (mViewHashMap == null) return;
    keySetPointer = mViewHashMap.keySet();
    iteratorPointer = keySetPointer.iterator();
    while (iteratorPointer.hasNext()) {
        viewPointer = iteratorPointer.next();

        if (viewPointer == null)
            continue;

        // Get Value
        parallaxInfoPointer = mViewHashMap.get(viewPointer);

        // Parallax the other view
        ParallaxHelper.scrollViewBy(viewPointer, x, y, parallaxInfoPointer.interpolator, parallaxInfoPointer.factor);
    }
}
 
开发者ID:Phonbopit,项目名称:30-android-libraries-in-30-days,代码行数:18,代码来源:ParallaxController.java

示例2: doScrollBackground

import uk.co.chrisjenx.paralloid.utils.ParallaxHelper; //导入依赖的package包/类
private final void doScrollBackground(final int x, final int y) {
    if (mParallaxDrawableMap == null) return;

    keySetPointer = mParallaxDrawableMap.keySet();
    iteratorPointer = keySetPointer.iterator();
    while (iteratorPointer.hasNext()) {
        viewPointer = iteratorPointer.next();

        if (viewPointer == null)
            continue;

        // Get Value
        parallaxDrawablePointer = mParallaxDrawableMap.get(viewPointer);

        // Parallax the drawable
        ParallaxHelper.scrollParallaxDrawableBy(parallaxDrawablePointer, x, y);
    }

}
 
开发者ID:Phonbopit,项目名称:30-android-libraries-in-30-days,代码行数:20,代码来源:ParallaxController.java

示例3: parallaxViewBackgroundBy

import uk.co.chrisjenx.paralloid.utils.ParallaxHelper; //导入依赖的package包/类
/**
 * @param view       View which to attach the drawable to. (null will do nothing)
 * @param drawable   Drawable to Parallax (null will do nothing)
 * @param multiplier How much to move it by, 1 would be a 1:1 relationship. 0.5 would move the.
 *                   Passing in 0 will make the background not move at all.
 */
@Override
public void parallaxViewBackgroundBy(final View view, final Drawable drawable, final float multiplier) {
    if (view == null) return;
    checkBackgroundMap();

    final ParallaxDrawable parallaxBackground = ParallaxHelper.getParallaxDrawable(drawable, multiplier);
    ParallaxHelper.setParallaxBackground(view, parallaxBackground);
    mParallaxDrawableMap.put(view, parallaxBackground);
}
 
开发者ID:Phonbopit,项目名称:30-android-libraries-in-30-days,代码行数:16,代码来源:ParallaxController.java


注:本文中的uk.co.chrisjenx.paralloid.utils.ParallaxHelper类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。