Reputation: 53
Is there any method such as isMainActivity()
to detect the main/launcher activity in Android?
Upvotes: 4
Views: 1921
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