使用 qml 从黑莓级联中的后台返回应用程序时更新列表视图
Update listview when coming back to app from background in blackberry cascades using qml
在我的主页中,我有一个显示一些数据并刷新数据的列表视图,它工作正常。我需要做的是在外出回到应用程序时刷新这个列表。我已经在名为 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
}
}
}
}
在 Qml 中,Fullscreen() 是应用程序恢复到全屏时发出的信号。
在我的主页中,我有一个显示一些数据并刷新数据的列表视图,它工作正常。我需要做的是在外出回到应用程序时刷新这个列表。我已经在名为 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
}
}
}
}
在 Qml 中,Fullscreen() 是应用程序恢复到全屏时发出的信号。