1

嗨,我在这里做一个应用程序,我必须显示一些编辑文本和按钮....所以通过 cocos2d 的某些功能不可行,所以我想将我的 android 代码集成到 cocos2d 代码。我在 iphone 中搜索了网络,它可能使用 addsubview() 但 android 我不知道任何人都可以救我...谢谢

     in iphone using below code they added subview:
   UIView *myview=[[UIView alloc] initWithFrame: CGRectMake(0, 0,320,480)];
            myview.backgroundColor=[UIColor redColor];
            [[[CCDirector sharedDirector] openGLView] addSubview:myview];
            [myview release];                   
4

1 回答 1

1

您可以在 cocos2d 游戏活动中添加视图为

        TextView txv=new TextView(GameActivity.context);
        txv.setText("ABC");
        LayoutParams layoutParams =new LayoutParams();
        CCDirector.sharedDirector().getActivity().addContentView(txv,layoutParams);
于 2012-12-12T06:39:24.530 回答