无法滚动背景

时间:2013-12-02 02:48:02

标签: android background scroll andengine live-wallpaper

谁能告诉我如何制作动态壁纸滚动的背景?自Android 4.1更新后,手机中的默认启动器无法滚动。但是,某些第三方发射器会滚动背景。关于我的动态壁纸;我添加了onOffsetchanged,但背景不会滚动。任何人都可以帮助我吗?

以下是代码

final AutoParallaxBackground background = new AutoParallaxBackground(0, 0, 0, 5);
background.attachParallaxEntity(new ParallaxEntity(0f, new Sprite(0, 0, backgroundRegion, this.getVertexBufferObjectManager())));
    mScene.setBackground(background);

2 个答案:

答案 0 :(得分:0)

通过添加以下行来检查

auto_background.setParallaxChangePerSecond(5.0f);

答案 1 :(得分:0)

new ParallaxEntity(5f or -5f, new Sprite(0, 0, backgroundRegion, this.getVertexBufferObjectManager()));

ParallaxEntity的第一个参数必须大于0才能向右移动,否则值会向左移动