Intent intent = new Intent(banana.this, super.class);
intent.putExtra("username1", username1_who_logged);
startActivity(intent);
System.exit(1);
I'm having outOfMemory error so I solved it with the code above.
Is it good practice to do it? I still need to pass some data, which is comes from "extra" with intent.
I pretty much erase or dump the entire system stuff(don't know exactly what I do with system.exit(1) though!
Is this a good practice?