Как пройти строку между действиями Android
Bundle extras = getIntent().getExtras();
if(extras !=null) {
String value = extras.getString("KEY");
}
Puzzled Platypus
Bundle extras = getIntent().getExtras();
if(extras !=null) {
String value = extras.getString("KEY");
}
Intent i = new Intent(this, FindAndroidActivity.class);
i.putExtra("KEY",YourData);