动态壁纸背景视差效果滚动
我试图让动态壁纸中的背景在用户更改主屏幕时滚动时表现得像常规壁纸一样。我知道所需的方法是 onOffestsChanged,但我似乎无法让它工作。
有人有建议或代码片段来让它工作吗?
I'm trying to get a background in a live wallpaper to behave like a regular wallpaper with regard to scrolling when the user changes homescreens. I know the method required for this is onOffestsChanged, but I can't seem to get it working.
Does anyone have advice or a code snippet to get this working?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
让您的引擎实现 onOffsetsChanged。 xOffset 变量是一个从 0 到 1 的浮点值,其中 0 表示最左边的屏幕,1 表示最右边的屏幕。使用屏幕宽度(来自 onSurfaceChanged)和图像宽度来确定用于绘制图像的左侧 x 坐标。
这应该适用于
screenWidth > yourImageWidth 和 screenWidth <你的图像宽度。
Have your engine implement onOffsetsChanged. The xOffset variable is a float value from 0 to 1 with 0 being the leftmost screen and 1 being the rightmost. Use the width of the screen (from onSurfaceChanged) and the width of your image to determine the left x coordinate with which to draw your image.
This should work with both
screenWidth > yourImageWidth
andscreenWidth < yourImageWidth.