Rotating screen, my listview disappears. (API 19). I have a list adapter, db helper that I initialize in onCreate() in my ListActivity. Rotating screen, my listview disappears. Per https://stackoverflow.com/a/2902944/398348, I tried
<activity
android:name="com.mypkg.MyListActivity"
android:label="@string/app_name"
android:configChanges="keyboardHidden|orientation" >
It made no difference.
Also I am trying to understand - if my variables (list adapter etc) are recreated in onCreate(), then won't this be run anyway when activity is destroyed and recreated? Why do I need to do it again in onSaveInstanceState?