0

想要在 android xml 布局的按钮点击上添加 CCSprite,这个 CCSprite 必须在那个布局按钮的前面。请帮帮我

holder.buttonDonate.setOnClickListener(new OnClickListener() {
    @Override
    public void onClick(View v) {

//  ClanCastleDonateUI extends CCLayer and it contains CCSprite
ClanCastleDonateUI troopDonatePopup = new ClanCastleDonateUI(message2);

                            troopDonatePopup.setAnchorPoint(0.5f, 0.5f);
                            troopDonatePopup.setPosition(HowUtils.getScreenSize().x/2, HowUtils.getScreenSize().y/2);

troopDonatePopup.setVertexZ(50);

                    CCDirector.sharedDirector().getRunningScene().addChild(troopDonatePopup, 9999999);

        }
    });
4

1 回答 1

0

请更具体。据我了解,单击时是否需要更改按钮。还是在单击按钮时必须在屏幕上放置一个新精灵。

于 2013-10-08T13:13:01.940 回答