Created
October 15, 2018 13:40
-
-
Save IhwanID/cd7246831e38030b65fc512e5f1736cb to your computer and use it in GitHub Desktop.
java android lifecycle
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package id.ihwan.bpr_training_java; | |
import android.support.v7.app.AppCompatActivity; | |
import android.os.Bundle; | |
import android.widget.Toast; | |
public class MainActivity extends AppCompatActivity { | |
@Override | |
protected void onCreate(Bundle savedInstanceState) { | |
super.onCreate(savedInstanceState); | |
setContentView(R.layout.activity_main); | |
Toast.makeText(this, "OnCreate", Toast.LENGTH_LONG).show(); | |
} | |
@Override | |
protected void onResume() { | |
super.onResume(); | |
Toast.makeText(this, "OnResume", Toast.LENGTH_LONG).show(); | |
} | |
@Override | |
protected void onStop() { | |
super.onStop(); | |
Toast.makeText(this, "OnStop", Toast.LENGTH_LONG).show(); | |
} | |
@Override | |
protected void onPause() { | |
super.onPause(); | |
Toast.makeText(this, "OnPause", Toast.LENGTH_LONG).show(); | |
} | |
@Override | |
protected void onRestart() { | |
super.onRestart(); | |
Toast.makeText(this, "OnRestart", Toast.LENGTH_LONG).show(); | |
} | |
@Override | |
protected void onDestroy() { | |
super.onDestroy(); | |
Toast.makeText(this, "OnDestroy", Toast.LENGTH_LONG).show(); | |
} | |
@Override | |
protected void onStart() { | |
super.onStart(); | |
Toast.makeText(this, "OnStart", Toast.LENGTH_LONG).show(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment