+2  A: 

Step #1: Find line 74 of the displayActivity.java file.

Step #2: Fix whatever problem is on line 74.

Now, the stack trace suggests that line 74 is in onDestroy(). Assuming that the activity code you have listed above is from displayActivity, then line 74 must be:

listview1.setAdapter(null);

That means listview1 is null. You neither declare nor assign a value to this data member in the code you have listed above.

CommonsWare
@CommonsWare thanx for the support, and on line 74 there is an ending brace "}" of onDestroy()
PM - Paresh Mayani
@Paresh Mayani: That suggests that your app is not running the same code as you are looking at, since you cannot crash with a `NullPointerException` on an ending curly brace. Also, `super` can't be `null`.
CommonsWare
@CommonsWare the problem is in listview1.setAdapter(null), but dont know why !! if i removed it then the application is running fine and not giving FORCE CLOSE alert box. by d way, thanx for support
PM - Paresh Mayani
A: 

try setting a BP at the first line of onDestroy and validate vars/members to find which one is null

Asahi