- 6 years ago
In the first activity:
Intent intent = new Intent(context, NewActivity.class);
intent.putExtra("key", stringArray);
context.startActivity(intent);
and in the second one:
Intent intent = getIntent();
String [] stringArray = intent.getStringArrayExtra("key");
- 6 years ago
Hot Questions