Thursday, 13 October 2016

Restart Android Activity

Restart Android Activity



 Simple coding for Restart Android Activity

  key : startActivity(getIntent());


@Overrideprotected void onRestart() {
    super.onRestart();
    startActivity(getIntent());

}
 
 So You can avoid to create Intent :-)

1 comment: