ListView is making the startup time of my app very long. First I see nothing and then the whole page with all of it's contents is drawn at once. How can I make the page draw up without the ListView (or an indeterminate progress ring at it's place) and only after that start drawing the ListView? Also the app need to be able to respond to a backey press during loading. Changing ListView.Visibility to collapsed at XAML and the to Visible on Page_Loaded does not have the desired effect; Only if I leave the ListView collapsed then do I get a fast pageload.
PS: I think virtualization is not the issue here: As 17 items of the list are visible at any time; The list is virtualized but it does load 52 items of the total 68 on startup; But then again the list is not that long.