我想做安卓动态壁纸。我想使用 LibGDx。我找到了这些信息: http ://www.badlogicgames.com/wordpress/?p=2652
不幸的是,将代码复制到我的壁纸,eclipse 显示错误。
有谁知道如何使用 LibGDx 制作壁纸?
Eclipse 显示以下信息:“MyApplicationListener 无法解析为类型”?有 3 个快速修复可用: 1. 创建类 MyApplicationListener 2. 更改为“ApplicationListener” (com.badlogic.gdx) 3. 修复项目设置
选择 2 修复后,eclipse 显示另一个错误:“无法实例化类型 ApplicationListener”
我在 HaMMeReD 的帮助下解决了我的问题。
我在android项目中的代码:
public class MainActivity extends AndroidLiveWallpaperService {
@Override
public ApplicationListener createListener(boolean isPreview) {
// TODO Auto-generated method stub
return new SexyWomen();// here should be wrote name of class form main LibGDx project
}
@Override
public AndroidApplicationConfiguration createConfig() {
// TODO Auto-generated method stub
return new AndroidApplicationConfiguration();
}
@Override
public void offsetChange(ApplicationListener listener, float xOffset, float yOffset, float xOffsetStep, float yOffsetStep,
int xPixelOffset, int yPixelOffset) {
// TODO Auto-generated method stub
Gdx.app.log("LiveWallpaper", "offset changed: " + xOffset + ", " + yOffset);
}
}