
B.Sc Computer Engineer
Chaudhry Muhammad Shakeel Gujjer;
Sheikhupura, Pakistan,
Cell: +92-332-4010322;

B.Sc Computer Engineer
Chaudhry Muhammad Shakeel Gujjer;
Sheikhupura, Pakistan,
Cell: +92-332-4010322;
I already have developed an application showing multiple Markers/points in mapview as shown in figure.
i want to start a new activity when i click on a red ballooned icon. The code i used for this purpose is posted in the post with the following link:
i also have the method onTap as follow:
@Override
public boolean onTap(int index) {
// TODO Auto-generated method stub
Intent inte=new Intent(mcon, Info.class);
inte.putExtra(“Value is”, 3000);
inte.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
mcon.startActivity(inte);
return true;
}
I also have modified my manifest file for the new activity intent.
but when i run the application and click on the any of the Red Ballooned Icon i a stuck in the problem and Force Close…..as below;
this happens while clicking on any of the red icons specifically…Please provide solution for this.

Written
on May 27, 2013