I get crash or loop in my app if I use onResume() method

649 Views Asked by At

In one of my android App, extending Activity, I use onResume() to refresh activity in return from PreferenceActivity, such this way ...

public class ListViewWebShort extends Activity {
    ListView listView;

    @Override
    protected void onResume() {
        super.onResume();
        this.onCreate(null);
    }
    ....
   @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_list_view);


        // Get ListView object from xml
        listView = (ListView) findViewById(R.id.list);
        ....

.. and here, App works as expected.

In another App, where I extend AppCompatActivity, the same onResume() method, makes my app crash or loop on start :

public class MainActivity extends AppCompatActivity
        implements NavigationView.OnNavigationItemSelectedListener {
    ListView listView;
    ArrayAdapter<String> adapter;
    ....
    @Override
    protected void onResume() {
        super.onResume();
        this.onCreate(null);
    }

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        requestWindowFeature(Window.FEATURE_NO_TITLE);
        setContentView(R.layout.activity_main);
        Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
        ....

If I use requestWindowFeature(Window.FEATURE_NO_TITLE); before setContentView, I see in debug that App loops in getDelegate().setContentView(layoutResID), inside AppCompactActivity.java, but if I remove it, the app FCs in the same function. It really makes me drive crazy .. what am I missing?

Thanks in advance for any suggestion.

2

There are 2 best solutions below

3
On

Don't call any activity lifecycle method directly. These methods are intended to be called from the system (inversion of control).

Especially in the super implementation of onCreate() there might happen something, that leads to crashes if they are called in the wrong order.

Try to extract the code, which you want to call in onCreate() and in onResume() in a separate method and call this method from onCreate() and onResume().

3
On

Actually in every call of onCreate, the onResume method of the application is also called.

So just move whatever code you wrote in the onCreate to onResume.

Hope it helps.