Yes, not normal at all and adding android:launchMode="singleTop" didn't 
help.
I read about the prob/solution here:  
http://stackoverflow.com/questions/4341600/how-to-prevent-multiple-instances-of-an-activity-when-it-is-launched-with-differ
 

I don't why this happen to this app and not my other app. The proposed 
solution doesn't solved the issue.

    <application
        android:icon="@drawable/ic_launcher"
        android:launchMode="singleTop"
        android:label="@string/app_name" >
        <activity
            android:name=".MainActivity"
            android:label="@string/app_name" > 
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>

        <receiver
            android:name="MyAlarmEventReceiver"
            android:process=":alarm_event_receiver_wake" >
        </receiver>
        <service android:enabled="true" android:name=".MyService" />
    </application>

-- 
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