cocos2d-x打开一个网页,特别简单
转载请注明地址白白:http://blog.csdn.net/u010229677
iOS中
<span style="font-size:18px;">void FileOperation::linkToFull() { [[UIApplication sharedApplication]openURL:[NSURL RLWithString:@"http://www.baidu.com"]]; }</span>
Android中:
在C++中调用openUrl函数
public static void openUrl(){ if(context==null) return ; Intent it = new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.baidu.com")); it.setClassName("com.android.browser", "com.android.browser.BrowserActivity"); context.startActivity(it); return ; }