Android: Passing Data Back And Forth Using Intent Setresults
I am creating a GPS based app for Android and there are 2 activities Main and LocNames. Main shows my map and LocNames is to get source and destination that user wants. I want to s
Solution 1:
You do not need an intent for a specific component. You only need an empty intent. So replace
Intent result = newIntent(LocNames.this, Main.class);
with
Intentintent=newIntent();
Post a Comment for "Android: Passing Data Back And Forth Using Intent Setresults"