本文整理匯總了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);
}