I have the following Activity:
public class StartActivity extends Activity
{
String str = "somestring";
int number = "1";
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
// Code here
}
}
I read the following on the Android docs (http://developer.android.com/reference/android/app/Activity.html)
If an activity is completely obscured by another activity, it is stopped. It still retains all state and member information, however, it is no longer visible to the user so its window is hidden and it will often be killed by the system when memory is needed elsewhere.
Does this mean that my class instances (str and number) are "alive" and available unless onDestroy is called or memory is needed after onPause or onStop is called?
