in my project first i find the user location and then i want open new activity and show user location on the map but when program want to read the thired lind program go to the debug mode and show invocationtargetexception ...? why program show this ? in secend activity i use the fragmentactivity ..
double latitude = gps.getLatitude();
double longitude = gps.getLongitude();
Intent is = new Intent(getBaseContext(), Location_find.class);
is.putExtra("latitude",String.valueOf( latitude));
is.putExtra("longitude",String.valueOf( longitude));
startActivity(is);