| Issue 40: | GirafPlace should refresh on resume | |
| 1 person starred this issue and may be notified of changes. | Back to list |
It would be nice if GirafPlace could refresh the application list on resume.
May 12, 2011
Project Member
#1
rj...@student.aau.dk
Status:
WontFix
May 12, 2011
I may not understand the reasoning, but if it's because you need the Views fully populated (which sometimes isn't possible to guarantee in onResume), you could use something along these lines:
@Override
public void onWindowFocusChanged(boolean hasFocus) {
if (hasFocus) {
//Update UI
}
super.onWindowFocusChanged(hasFocus);
}
|