我有这样的代码:
mButton = new ButtonSprite(400 , 400, myTiledTextureRegion.getTextureRegion(0), myTiledTextureRegion.getTextureRegion(1),
activity.getVertexBufferObjectManager(), new OnClickListener() {
@Override
public void onClick(ButtonSprite pButtonSprite, float pTouchAreaLocalX,
float pTouchAreaLocalY) {
Toast.makeText(MenuScene.this.activity, "Clicked", Toast.LENGTH_LONG).show();
}
});
this.attachChild(mButton);
我的问题是,当我单击按钮时,我没有收到 toast 消息(记录相同),而且 myTiledTextureRegion.getTextureRegion(1) 的精灵也没有改变。我不知道为什么?
我可以点击按钮,但没有任何反应。我尝试使用 AnimatedSprite 来测试资源并正确显示动画。为什么我的 ButtonSprite OnClickListener 和精灵更改在那里不起作用?
我加载资源的方式:
BitmapTextureAtlasTextureRegionFactory.setAssetBasePath("gfx/");
mBitmapTextureAtlas = new BuildableBitmapTextureAtlas(activity.getTextureManager(), 512, 256, TextureOptions.NEAREST);
myTiledTextureRegion = BitmapTextureAtlasTextureRegionFactory.createTiledFromAsset(mBitmapTextureAtlas, activity, "btn.png", 1, 3);
try {
mBitmapTextureAtlas.build(new BlackPawnTextureAtlasBuilder<IBitmapTextureAtlasSource, BitmapTextureAtlas>(0, 0, 1));
mBitmapTextureAtlas.load();
} catch (TextureAtlasBuilderException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
我在我的场景课上做所有事情,因为我只有一个活动(和许多场景)。感谢帮助。