In my Android application I have a DefaultApplication class which extends android.app.Application and in DefaultApplication onCreate method I bind some services which will be used by my other Activities in this app. Also I have a BroadcastReceiver which listens and receives C2DM Messages. When this receiver receives a message when the application is not running, it will fire a dialog which shows the upcoming message and it will start an Activity of my application.

My question is, when I start an activity without any interaction with DefaultApplication, will my DefaultApplication's onCreate method get called because an Activity of that application is started?

Here are the definition and Manifest of my DefaultApplication:

public class DefaultApplication extends Application {

    @Override
    public void onCreate() {
        super.onCreate();

        doBindService();

    }

    void doBindService() {

        // Establish a connection with the service. We use an explicit
        // class name because we want a specific service implementation that
        // we know will be running in our own process (and thus won't be
        // supporting component replacement by other applications).

        bindService(new Intent(DefaultApplication.this, SocketService.class),
                socketServiceConnection, Context.BIND_AUTO_CREATE);

        mIsBound = true;
    }

    void doUnbindService() {
        if (mIsBound) {
            // Detach our existing connection.
            unbindService(socketServiceConnection);
            mIsBound = false;
        }
    }
}

Manifest looks like this:

<application android:icon="@drawable/icon" android:label="@string/app_name"
        android:name="com.mypackage.DefaultApplication"
        android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
        android:debuggable="true">
<service android:name="com.mypackage.services.SocketService"></service>
<activity android:name="TestActivity"
            android:screenOrientation="landscape"></activity>
</application>
link|improve this question

1  
yes, it works this, I haven't seen another else... – atasoyh Oct 7 '11 at 11:19
I don't unserstand why you extend Application? Shouldn't you extend Activity? – Caner Oct 7 '11 at 11:25
@LAS_VEGAS In the rest of my DefaultApplication I store some data and define some methods which are used Application-wide. I copied only a part of it to here. – Yasin YILDIRIM Oct 7 '11 at 11:44
feedback

2 Answers

up vote 3 down vote accepted

Only the first time.

When Activity is started and application is not loaded, then both onCreate() methods will be called.

But for subsequent starts of Activity, the onCreate() of application will not be called.

link|improve this answer
feedback

According to the android developer docs oncreate method will be called you can visit the Reference link

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.