如何在Blackberry 10中显示弹出窗口?我想在添加/删除/更新任何联系人时显示弹出窗口。我采取了这样一种方法---
void ContactEditor::showToast(QString text) {
bb::system::SystemToast toast;
toast.setBody(text);
toast.setPosition(bb::system::SystemUiPosition::MiddleCenter);
toast.exec();
}
并且这样称呼---
showToast("contact added...");
还包括System Toast的文件。
但是这给了我错误----
make[2]: *** [o-g/addressbook] Error 1
make[1]: *** [debug] Error 2
make: *** [Simulator-Debug] Error 2
有人可以告诉我这是什么问题吗?
答案 0 :(得分:4)
将LIBS += -lbbsystem
添加到您的应用专业版文件中。并包括
#include <bb/system/SystemToast>
SystemToast *toast = new SystemToast(this);
toast->setBody("Your Toast");
toast->setPosition(SystemUiPosition::MiddleCenter);
toast->show();