在我的主页上我有一个列表视图,显示一些数据并刷新数据,它工作正常。我需要做的是在外出后回到应用程序时刷新此列表。我已经在我的函数reloadView()中编写了用于刷新的代码,我只需要知道qml中是否有任何方法可以检测应用程序何时返回到前台我可以调用此reloadView(),如果不存在则任何其他方式来实现这一目标?
This is my homepage.qml structure
Page {
//some code
function reloadView()
{
//This is the function which I need to call when app comes to foreground
}
Container {
layout: DockLayout {
}
ScrollView {
id: homePageScroll
Container {
layout: DockLayout {
}
ListView {
//somecode
}
}
}
}