I tried to set the android:launchMode="singleTask" to call the Activity, but it still does not work as I expected.
I need this onCreate(Bundle bundle) method to call only once, but it still calls every time I start Activity.
I start Activity using the following code:
public void onClick(View v) { Intent myIntent = new Intent(v.getContext(), NextActivity.class); startActivity(myIntent); }
Please let me know what I'm doing wrong
java android
user971511
source share