I tried to set attribute android:launchMode="singleTask"
for calling Activity, but it still does not works as I expected.
I need that method onCreate(Bundle bundle)
to be called only once, but it still calls each time when I start Activity.
I start Activity using code like this:
public void onClick(View v) {
Intent myIntent = new Intent(v.getContext(), NextActivity.class);
startActivity(myIntent);
}
Please let me know what I am doing wrong