Skip to main content

Can I have an activity create another activity and wait for it to return information?



I want the user to be able to click a button and move to a different activity to input some information and then press a button to "submit" that information to the previous screen.





Home Screen --button press--> Input Screen --"submit"--> Home Screen





Is there a way to start the input screen activity and have the home screen wait for a response? This is the code I have now.







Intent inputIntent = new Intent(this, InputActivity.class);

try {

// Attempt to start the activity

startActivity(inputIntent);

return true;

} catch(ActivityNotFoundException e) {

System.out.println("Cannot find activity for intent: " + inputIntent.toString());

return false;

}







I guess not only am I asking how to have the home screen "wait," but it would also be ideal to get back to the same home screen (not creating a NEW homescreen from the input screen).


Comments

  1. Yes. Call startActivityForResult() to launch the second activity, and inside the second activity, call finish() to return to the first one. In the second activity, call setResult() to set the result which will be returned to the caller, and back in the first activity you retrieve the result in onActivityResult(). This section of the docs tells you more.

    This tutorial takes you through the steps, and a quick search will throw up many similar tutorials.

    ReplyDelete
  2. The beauty is that your home Activity doesnT have to wait, but can react upon the activity result of your text editing Activity.

    I m sure you have checked but I suggest you read the Activity lifecycle and try to understand a little bit more.

    A last headstart for you may be the startActivityForResult()

    Good luck

    ReplyDelete

Post a Comment

Popular posts from this blog

Why is this Javascript much *slower* than its jQuery equivalent?

I have a HTML list of about 500 items and a "filter" box above it. I started by using jQuery to filter the list when I typed a letter (timing code added later): $('#filter').keyup( function() { var jqStart = (new Date).getTime(); var search = $(this).val().toLowerCase(); var $list = $('ul.ablist > li'); $list.each( function() { if ( $(this).text().toLowerCase().indexOf(search) === -1 ) $(this).hide(); else $(this).show(); } ); console.log('Time: ' + ((new Date).getTime() - jqStart)); } ); However, there was a couple of seconds delay after typing each letter (particularly the first letter). So I thought it may be slightly quicker if I used plain Javascript (I read recently that jQuery's each function is particularly slow). Here's my JS equivalent: document.getElementById('filter').addEventListener( 'keyup', function () { var jsStart = (new Date).getTime()...

Is it possible to have IF statement in an Echo statement in PHP

Thanks in advance. I did look at the other questions/answers that were similar and didn't find exactly what I was looking for. I'm trying to do this, am I on the right path? echo " <div id='tabs-".$match."'> <textarea id='".$match."' name='".$match."'>". if ($COLUMN_NAME === $match) { echo $FIELD_WITH_COLUMN_NAME; } else { } ."</textarea> <script type='text/javascript'> CKEDITOR.replace( '".$match."' ); </script> </div>"; I am getting the following error message in the browser: Parse error: syntax error, unexpected T_IF Please let me know if this is the right way to go about nesting an IF statement inside an echo. Thank you.