cantoraz
cantoraz

Reputation: 53

How to check if the current activity is the main/launcher activity in java

Is there any method such as isMainActivity() to detect the main/launcher activity in Android?

Upvotes: 4

Views: 1921

Answers (1)

Daniel Conde Marin
Daniel Conde Marin

Reputation: 7742

You can do this:

Intent intent = getIntent();

String action = intent.getAction();             
Set<String> categories = intent.getCategories();

Then, with that info you can check if your current activity is your MAIN/LAUNCHER activity.

Upvotes: 6

Related Questions