my application gets killed each time it comes back from the screen-off-state. i fetch all the informations which my app does but i can't find out why it calls onDestroy. It's the first time i see this behavior in my applications.

My mainactivity extends tabActivity because it contains a tabhost. I've read that it has to extend it or it will FC. I'm not sure if it comes from this?! Oh and it implements Observer but this should be no problem.

Here are the logs:

07-21 09:57:53.247: VERBOSE/###(13180): onResume
07-21 09:57:53.267: VERBOSE/###(13180): onPause
07-21 09:57:59.967: VERBOSE/###(13180): onResume
07-21 09:58:00.597: VERBOSE/###(13180): onPause
07-21 09:58:00.597: VERBOSE/###(13180): onDestroy
07-21 09:58:00.637: VERBOSE/###(13180): onCreate

the crazy thing is that it calls the onDestroy the most times after the screen goes on again, sometimes it has enough time to do this before the screen goes off. but after it goes on again it does the same again...

i hope someone has a tipp for me or any information how to resolve this issue.

i use the android 2.1-update1 sdk for my application if this is important.


EDIT:

The application gets tested on a real Android Device.

Here some Basic code (removed all unnecessary lines and information)

package; imports;

public class WebLabActivity extends TabActivity implements Observer{

#declerations

/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    Log.v("###", "onCreate");
    setContentView(R.layout.main);
    # initialize some basic things
}

@Override
public void onResume() {
    super.onResume();
    Log.v("###", "onResume");
}

@Override
public void onDestroy() {
    super.onDestroy();
    Log.v("###", "onDestroy");
}

@Override
public void onRestart() {
    Log.v("###", "onRestart");
    super.onRestart();
}

@Override
public void onPause() {
    Log.v("###", "onPause");
    super.onPause();
}

@Override
public void onConfigurationChanged(Configuration newConfig) {
    Log.v("###", "onConfigurationChanged");
    super.onConfigurationChanged(newConfig);
}

@Override
public void update(Observable observable, Object data) {
    Log.v("###", "notifyManager.getWho() + " made an Update");
}


    private void initializeSidebarTabhost() {
    TabSpec 1 = tabHost.newTabSpec("1");
        TabSpec 2 = tabHost.newTabSpec("2");
    TabSpec 3 = tabHost.newTabSpec("3");
    TabSpec 4 = tabHost.newTabSpec("4");


    1.setIndicator("###");
    2.setIndicator("###");
    3.setIndicator("###");
    4.setIndicator("###");

    addIntents

    tabHost.addTab(1); //0
    tabHost.addTab(2); //1
    tabHost.addTab(3); //2
    tabHost.addTab(4); //3

    tabHost.getTabWidget().setCurrentTab(2);
}
}

EDIT2:

Ok i've tested my application without initzializing anything, then with only extending activity, or without implementing observer. but nothing changed anything. everytime i set my phone to sleep, wake it up onDestroy get's called?!


EDIT3:

Ok found out something interesting.

First here's my AndroidManifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
      package="com.tundem.###"
      android:versionCode="1"
      android:versionName="1.0">
    <uses-sdk android:minSdkVersion="7" />

    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />

    <application android:icon="@drawable/icon" android:label="@string/app_name">
        <activity android:name=".###" android:label="@string/app_name" android:screenOrientation="landscape" android:theme="@android:style/Theme.Light.NoTitleBar">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>
</manifest>

As soon as i remove the screenOrientation="landscape" the application won't be destroyed each time i wake up my device. I tried it more than 10 times but no more calls to onDestroy()

So i think i will have to set this in code?! Any tips or pieces of code?

link|improve this question

That sounds kind of weird, is this in the emulator, and can you post a skelton code framework that exhibits the behavior? – Idistic Jul 21 '11 at 8:20
On the emulator i havn't tried it yet. I get this behavior on my real Android phone so no emulator. What do you mean with which exhibits the behavior. I will post some code in the next few minutes. – mikepenz Jul 21 '11 at 8:47
I mean some code that verifiably reproduces the problem, sometimes people put up snippets that leave out the real issue – Idistic Jul 21 '11 at 8:54
i put up the code i think is important, because if i overlook the things i left here with my samplecode i'm sure that these things doesn't cause the problem. Or do you think that there could be a problem with addListeners. Open a file on update, call the method initizialSidebarTabhost, and call addObserver?! i think the problem is caused by extending the TabActivity, but do you know any other trick how i can use a tabhost?! – mikepenz Jul 21 '11 at 9:05
@mikepenz it is weird. but somehow good too - you cannot control when android os destroy or re-creates your app, so you should make your app immune to this behavior. you never know what could happen on a real-device-with-a-manufacturer-custom-android-build :) – denis.solonenko Jul 21 '11 at 9:06
show 1 more comment
feedback

1 Answer

up vote 3 down vote accepted

If you want to stop the destroy/create issue that is the default in android because of an orientation change and lock in one orientation then you need to add code and xml

In your activites code (notes about the xml)

    // When an android device changes orientation usually the activity is destroyed and recreated with a new 
    // orientation layout. This method, along with a setting in the the manifest for this activity
    // tells the OS to let us handle it instead.
    //
    // This increases performance and gives us greater control over activity creation and destruction for simple 
    // activities. 
    // 
    // Must place this into the AndroidManifest.xml file for this activity in order for this to work properly 
    //   android:configChanges="keyboardHidden|orientation"
    //   optionally 
    //   android:screenOrientation="landscape"
    @Override
    public void onConfigurationChanged(Configuration newConfig) 
    {
        super.onConfigurationChanged(newConfig);
    }
link|improve this answer
i found this solution on my own a few minutes ago. Because i have to less reputation i was not able to post it here. but thank you a lot for the answer ;) I hope it is useful for all the others out there – mikepenz Jul 21 '11 at 9:36
@mikepenz - glad discussion led you to your own solution, cheers – Idistic Jul 21 '11 at 9:37
Yes it's great if you find the answer alone ;). And it's great to get help from others. So thanks again for your help. I'm sure i would have needed hours to find the same solution. ;). But you were right, sometimes or often people forget about the main points which causes a problem then in their main question. Thanks again ;) – mikepenz Jul 21 '11 at 9:42
@mikepenz no problem – Idistic Jul 21 '11 at 13:53
feedback

Your Answer

 
or
required, but never shown

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