如何在Andengine中导入BitmapTextureAtlas?

时间:2012-05-23 10:39:11

标签: android import bitmap andengine

我添加了这一行。但是它提供了error.how来导入它吗?

 import org.andengine.opengl.texture.atlas.TextureAtlas;

1 个答案:

答案 0 :(得分:2)

TextureAtlas是一个抽象类,尝试导入

import org.andengine.opengl.texture.atlas.bitmap.BitmapTextureAtlas;

import org.andengine.opengl.texture.atlas.bitmap.BuildableBitmapTextureAtlas;

取决于您使用的是哪一个

如果您使用Eclipse并且配置正确,您应该能够删除该行,Eclipse将添加正确的import语句 - 至少它在我的系统上。