我添加了这一行。但是它提供了error.how来导入它吗?
import org.andengine.opengl.texture.atlas.TextureAtlas;
答案 0 :(得分:2)
TextureAtlas是一个抽象类,尝试导入
import org.andengine.opengl.texture.atlas.bitmap.BitmapTextureAtlas;
或
import org.andengine.opengl.texture.atlas.bitmap.BuildableBitmapTextureAtlas;
取决于您使用的是哪一个
如果您使用Eclipse并且配置正确,您应该能够删除该行,Eclipse将添加正确的import语句 - 至少它在我的系统上。