0
從黑莓級聯中的背景重新回到應用程序時更新列表視圖我有一個列表視圖,它顯示一些數據並刷新數據,它工作正常。我需要做的是在外出後回到應用程序時刷新此列表。我已經在我的稱爲reloadView()的函數中編寫了用於刷新的代碼,我只需要知道在qml中是否有任何方法檢測應用程序何時返回到前臺,在那裏我可以調用此reloadView(),如果沒有的話任何其他方式來實現這一目標?在我的主頁上使用qml
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
}
}
}
}