How to close all child activities from parent in android

前端 未结 5 681
感情败类
感情败类 2020-12-12 08:30

I\'m new to android. Actually one handler is running in Home Activity A for every 30 sec to check the net connection.

If I\'m went to activity C by A->B->C, If ther

5条回答
  •  醉梦人生
    2020-12-12 08:47

    For example, if you want to start intentB, you can do following in old activity:

    Intent intentB = new Intent();
    intentB.setClass(XYZ.this, abc.class);
    intentB.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
    startActivity(intentB);

提交回复
热议问题