I created an app that supports both phone and tablet version so i use the android-support-v4.jar library.
My activity extends the ListFragment and I tried to overri
I had a similar issue using the SherlockActionBar on my activity. Here was my setup that fixed the problem:
import com.actionbarsherlock.app.SherlockActivity;
import com.actionbarsherlock.view.Menu;
public class LoginActivity extends SherlockActivity{
...
@Override
public boolean onCreateOptionsMenu(Menu menu){
getSupportMenuInflater().inflate(R.menu.activity_login, menu);
return true;
}
...
}