Skip to content

Instantly share code, notes, and snippets.

View mahdisayeri's full-sized avatar

Mahdi mahdisayeri

View GitHub Profile
@chrisjenx
chrisjenx / gist:3176258
Created July 25, 2012 13:42
Restart activity from fragment
//Post it in a handler to make sure it gets called if coming back from a lifecycle method.
new Handler().post(new Runnable() {
@Override
public void run()
{
Intent intent = getActivity().getIntent();
intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_ACTIVITY_NEW_TASK
| Intent.FLAG_ACTIVITY_NO_ANIMATION);
getActivity().overridePendingTransition(0, 0);