friends,
i am using following code in my ListActivity
// a seperate class in project
public class MyActivity extends ListActivity {
//some common functions here..
}
public class SelectLocation extends MyListActivity
{
public void onCreate(Bundle savedInstance) {
// here.....
}
@Override
protected void onDestroy() {
super.onDestroy();
if(adap != null)
adap = null;
if(list != null)
list = null;
System.gc();
}
}
any one guide me why onDestroy method is not called in my code?
any help would be appreciated.