I am working on android app. What i want is to handle Force Close Error that is when ever a force close occurs I could perform a certain action instead of that force close popup appearance. for e.g a method gets called on a forceclose
public void forcecloseoccurs(){
Toast.show("force closed");
}
you can not control force closed pop up directly. Check in your logs what is the error/exception which is causing force close. e.g. if its NullPointerException, you should try handling that.