Open GoogleCodeExporter opened 8 years ago
ok, thanks a lot :)
I'll try to add your fix in near time
Original comment by alexande...@gmail.com
on 2 Aug 2011 at 5:28
Most likely the bug will be fixed today
Original comment by alexande...@gmail.com
on 18 Aug 2011 at 6:38
You should onRetainNonConfigurationInstance() and not use onPause().
Submitting patch.
Original comment by twig.ngu...@gmail.com
on 10 Feb 2012 at 9:03
Attachments:
Fixed it using the following code on FileDialog.java:
@Override
public void onSaveInstanceState(Bundle savedInstanceState) {
super.onSaveInstanceState(savedInstanceState);
savedInstanceState.putString("CurrentPath", currentPath);
}
@Override
public void onRestoreInstanceState(Bundle savedInstanceState) {
super.onRestoreInstanceState(savedInstanceState);
currentPath = savedInstanceState.getString("CurrentPath");
getDir(currentPath);
}
Original comment by brunomac...@gmail.com
on 26 May 2013 at 6:54
Original issue reported on code.google.com by
stevens...@gmail.com
on 1 Aug 2011 at 12:49