halilkaya
halilkaya

Reputation: 467

Changing the main launcher activity programmatically

My app works as launcher. 10 mins later another activity starts automatically. When this activity started, if user presses home button, he returns to the main activity. However, I want to change the launcher activity as the second one. It must be forbidden to return to the main activity even if he presses home button.

Upvotes: 4

Views: 3629

Answers (1)

Vaiden
Vaiden

Reputation: 16122

Instead of playing around with the intent filters, I suggest you create a blank Activity, with no UI, and register it as your launcher. This Activity's sole role is to choose the correct actual Activity you wanna show, launch it as a new task, and then quit silently.

Upvotes: 9

Related Questions