2

Is it possible to create an Android App that will launch another Android App and close itself when openned?

MaiaVictor
  • 51,090
  • 44
  • 144
  • 286

2 Answers2

2

Of course it is possible. Have a look at Intent. You can close your activity with finish().

Carsten Drösser
  • 496
  • 1
  • 4
  • 16
2

This question has been already asked and answered on StackOverflow:

How to launch an Activity from another Application in Android

Open another application from your own (intent)

In short, Intent is the keyword of what you are looking for.

Jack L.
  • 1,257
  • 2
  • 17
  • 37
  • That is true, I must admit I have asked this one without proper research (it was an extension of another one I have properly researched, I honestly forgot). – MaiaVictor Sep 29 '12 at 17:51