使用 QtCreator 应用程序向导,我使用 Html5 应用程序模板创建了一个项目。
它应该显示一个index.html
页面。如果我在 Chrome 中加载该页面,它可以正常工作。我的 Qt 程序将正确呈现它,但点击在按钮、链接或滚动条上不起作用。
我的代码正是向导生成的:
int main(int argc, char *argv[]) {
QApplication app(argc, argv);
Html5ApplicationViewer viewer;
viewer.setOrientation(Html5ApplicationViewer::ScreenOrientationAuto);
viewer.showExpanded(); //Load the HTML Page
viewer.loadFile(QLatin1String("html/index.html"));
return app.exec();
}
有人遇到过这个问题吗?我有 Qt 4.7.2。