owo #1
@ -28,6 +28,10 @@ public class MainActivity extends AppCompatActivity {
|
||||
}
|
||||
|
||||
public void goBack (View v) {
|
||||
Intent intent = new Intent();
|
||||
intent.putExtra("path", tvPath.getText());
|
||||
setResult(RESULT_OK, intent);
|
||||
|
||||
finish();
|
||||
}
|
||||
|
||||
|
@ -23,6 +23,10 @@ public class SecondActivity extends AppCompatActivity {
|
||||
}
|
||||
|
||||
public void goBack (View v) {
|
||||
Intent intent = new Intent();
|
||||
intent.putExtra("path", tvPath.getText());
|
||||
setResult(RESULT_OK, intent);
|
||||
|
||||
finish();
|
||||
}
|
||||
|
||||
|
@ -23,6 +23,10 @@ public class ThirdActivity extends AppCompatActivity {
|
||||
}
|
||||
|
||||
public void goBack (View v) {
|
||||
Intent intent = new Intent();
|
||||
intent.putExtra("path", tvPath.getText());
|
||||
setResult(RESULT_OK, intent);
|
||||
|
||||
finish();
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user