I am new to android. I need to create an auto startup application. That application will control the files( if we open a image file from Gallery (or) mail attachments, on that time our application give a alert dialog to the user). Please guide to how to create an auto startup application to control all the file format in the android emulator.

link|improve this question

75% accept rate
You should go through your questions and 'accept' answers that have been helpful. Do that by clicking the green tickmark next to the answers. This provides people who have helped you with reputation - see the FAQ if you don't know how that works. – Steve Haley May 26 '10 at 11:02
possible duplicate of How to Autostart an Android Application? – Christopher Jun 4 '10 at 14:38
feedback

3 Answers

up vote 3 down vote accepted

You should use the permission android.permission.RECEIVE_BOOT_COMPLETED and register a BroadcastReceiver for android.intent.action.BOOT_COMPLETED.

link|improve this answer
feedback

You can take a look at Photostream source as it implements BroadcastReceiver approach suggested by MrSnowflake http://code.google.com/p/apps-for-android/

link|improve this answer
feedback

Please guide to how to create an auto startup application to control all the file format in the android emulator.

Creating an "auto startup application" can be done as MrSnowflake and Fedor describe.

Creating an "application to control all the file format in the android emulator", fortunately, is impossible, as that would represent a massive security hole.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.