當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。