Am trying to extend my activity with Actionbarsherlock , When i did this i’m getting an error
“Cannot override the final method from SherlockActivity”
My activity has these imports
import java.io.IOException;
import com.actionbarsherlock.app.SherlockActivity;
import android.os.Bundle;
import android.accounts.Account;
import android.accounts.AccountManager;
import android.accounts.AccountManagerCallback;
import android.accounts.AccountManagerFuture;
import android.accounts.AuthenticatorException;
import android.accounts.OperationCanceledException;
import android.app.Activity;
import android.content.Intent;
import android.util.Log;
import android.view.Menu;
import android.view.View;
import android.widget.Button;
Kindly guide me how to resolve it?
The correct answer is to import the ActionBarSherlock classes, instead of the standard Android ones.
This is from the front page of the ActionBarSherlock project, so obviously this is a common issue: