Search code examples
androidmethodscall

Call method on activity load, Android


I want to call a method as soon as the activity has loaded. The method is a public void. Any help would be appreciated


Solution

  • 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 from the above

    enter image description here