本文整理匯總了Java中uk.co.chrisjenx.paralloid.utils.ParallaxHelper.setParallaxBackground方法的典型用法代碼示例。如果您正苦於以下問題:Java ParallaxHelper.setParallaxBackground方法的具體用法?Java ParallaxHelper.setParallaxBackground怎麽用?Java ParallaxHelper.setParallaxBackground使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類uk.co.chrisjenx.paralloid.utils.ParallaxHelper
的用法示例。
在下文中一共展示了ParallaxHelper.setParallaxBackground方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: 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);
}