1

我有这样的代码:

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();
    }

我在我的场景课上做所有事情,因为我只有一个活动(和许多场景)。感谢帮助。

4

2 回答 2

5

看看这是否是问题......在您附加按钮之前,请this.attachChild(mButton);确保并注册触摸区域this.registerTouchArea(mButton);

于 2012-10-08T00:21:53.670 回答
1

尝试将精灵添加到场景中后,使用:scene.setTouchAreaBindingOnActionDownEnabled(true);

于 2012-10-08T09:03:53.890 回答