I want to call a method as soon as the activity has loaded. The method is a public void. Any help would be appreciated
You can use the following method
You can call your method in between any one of them on Activity startup all these are called where as onResume is called every time activity resumes it is well explained in ActivityLifeCycle Diagram
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_splash);
}
@Override
protected void onStart()
{
// TODO Auto-generated method stub
super.onStart();
}
@Override
protected void onResume()
{
// TODO Auto-generated method stub
super.onResume();
}
You can learn more from here
You can learn more from ActivityLifeCycle
or follow this ActivityLifeCycle
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With