Could I pass a string to another activity in Android without using intents? I'm having troubles with intent extras... They don't always seem to work! So, is there any other way?
What I've tried with intents:
String id = intent.getStringExtra("id");
String name = intent.getStringExtra("name");
But it gets two kinds of string every time I start the activity. The first time is different from the other times. Can I pass that second activity any other things without using intents?