Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

this question was asked 3 times here but no answer.

I´m using Phonegap 2.1 on android device 2.3.6 (Galaxy SII) I´m also using AdMob Phonegap plugin.

Well the problem is the same as stated by others:

  • When trying to resume thru the app icon the app is restarted even though it´s in memory
  • When passing thru the task manager it is resumed normally

My main activity

public class testApp extends DroidGap 
{

    @Override
    public void onCreate(Bundle savedInstanceState)
    {

        super.onCreate(savedInstanceState);
        super.setIntegerProperty("splashscreen", R.drawable.splash);
        setIntegerProperty("loadUrlTimeoutValue", 60000);
        super.loadUrl("file:///android_asset/www/index.html",5000);

    }
}

manifest.xml

<application android:icon="@drawable/icon" android:label="@string/app_name"
    >
    <activity android:name="testApp" android:label="@string/app_name"
            android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale"
            android:windowSoftInputMode="adjustPan">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <activity android:name="com.google.ads.AdActivity"
              android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"
              />
</application>

Thank you for any advice

share|improve this question

1 Answer

place android:launchMode="standard" in manifest for testApp Activity

share|improve this answer
The above answer didn't work for me. My app is still getting restarted when resuming after pressing home button on app. – Narendra DroidWorm Apr 30 at 13:58

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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