I had the same problem. The Jake solution above did not fix this for me - the undefined method.
I found a working solution posted by Jake to the error list for ActionBarSherlock:
. - , getSupportActionBar(), " ".
, onCreate():
protected void onCreate(Bundle arg0)
{
super.onCreate(arg0);
requestWindowFeature(Window.FEATURE_INDETERMINATE_PROGRESS);
getSupportActionBar();
setSupportProgressBarIndeterminateVisibility(false);
}
Laux:
, com.actionbarsherlock.view.Window.FEATURE_INDETERMINATE_PROGRESS, .
import , :
import com.actionbarsherlock.app.ActionBar;
import com.actionbarsherlock.app.SherlockActivity;
import com.actionbarsherlock.view.ActionProvider;
import com.actionbarsherlock.view.Menu;
import com.actionbarsherlock.view.MenuItem;
import com.actionbarsherlock.view.Window;
import com.actionbarsherlock.widget.ShareActionProvider;
, - Android- , .
, , Eclipse (CTRL-SHIFT-O), Eclipse , ABS .
Glebbb .