Each application that wants to run must implement a
android.intent.action.BOOT_COMPLETED broadcast receiver, and have the
android.permission.RECEIVE_BOOT_COMPLETED permission.

You probably don't actually want to know about the actual set of
running processes -- just how to get your application to run.

If you don't really need to do it, you shouldn't. That's why it
requires a permission -- so the user knows if your process is doing
it, and gives his permission. And you shouldn't stay running; just use
the broadcast receiver to do whatever initialization your application
requires, such as registering alarms, etc. Ideally, your app will do a
bit of registration, and then be available to be killed until some
other event comes along.

On Mar 2, 10:31 pm, mycall <ahndr...@naver.com> wrote:
> Hello, All
>
> I'm beginner for developing hanset.
>
> When I connet device to DDMS sdk tool, I can see the running process.
>
> But I don't think that those process are tatal processes.
>
> For example, I have 10 android applications, A, B, C, D, E, F, G, H,
> I  and J.
>
> If I want to run only A, B, C application on the power-on, how can I
> do that.?
>
> Where can I make a list for processes running in the poweron time.?
>
> Thanks
> All

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to