Issue 40: GirafPlace should refresh on resume
Status:  WontFix
Owner:
Closed:  May 2011
Project Member Reported by kfugls...@gmail.com, May 12, 2011
It would be nice if GirafPlace could refresh the application list on resume.
May 12, 2011
Project Member #1 rj...@student.aau.dk
This would lead to undesirable situations. The options menu refresh will have to.
Status: WontFix
May 12, 2011
Project Member #2 jkg@jkg.dk
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);
    }