use commitAllowingStateLoss() in onHeadlinesLoaded because it could be

called after activity stop
This commit is contained in:
Andrew Dolgov 2013-10-22 09:35:09 +04:00
parent 956c6f27fa
commit 0aae49e569
1 changed files with 2 additions and 2 deletions

View File

@ -250,7 +250,7 @@ public class HeadlinesActivity extends OnlineActivity implements HeadlinesEventL
ft.replace(R.id.article_fragment, new LoadingFragment(), null);
ft.commit();
ft.commitAllowingStateLoss();
final Article fArticle = article;
final Feed fFeed = hf.getFeed();
@ -265,7 +265,7 @@ public class HeadlinesActivity extends OnlineActivity implements HeadlinesEventL
af.initialize(fArticle, fFeed);
ft.replace(R.id.article_fragment, af, FRAG_ARTICLE);
ft.commit();
ft.commitAllowingStateLoss();
}
}, 10);
}