嗨,我在这里做一个应用程序,我必须显示一些编辑文本和按钮....所以通过 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];