Question about Intent, android
Posted
by Kaustubh
on Stack Overflow
See other posts from Stack Overflow
or by Kaustubh
Published on 2010-03-29T06:37:27Z
Indexed on
2010/03/29
6:43 UTC
Read the original article
Hit count: 391
android
I am confused, and need to get my concepts straight.
After executing the last statement, which function is called, in MapsActivity? is it onResume? and under which function (onResume()?) should i put getExtra()?
Log.i("onMenuAnimate", "Attempting to animate to:");
Intent intent = new Intent(SearchDB.this, MapsActivity.class);
intent.putExtra("com.gpsdroid.SearchDB.Lat", nameLatitude.getText());
intent.putExtra("com.gpsdroid.SearchDB.Long", nameLatitude.getText());
SearchDB.this.startActivity(intent);
© Stack Overflow or respective owner