本文整理汇总了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);
}
}
示例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);
}
}
示例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);
}