I\'m currently trying to adapt my application to use the \"Compatibility Libraries for Android v4\" to provide the benefits of the usage of fragments even to Android 1.6 use
Just change
@Override public boolean onContextItemSelected(MenuItem item) { return true; }
to
@Override public boolean onContextItemSelected(MenuItem item) { return super.onContextItemSelected(item); }
and will work great!!!