johannilsson / android-actionbar

DEPRECATED Android Action Bar Implementation
1.3k stars 564 forks source link

Problems using ActionBar #44

Closed javiermanzano closed 12 years ago

javiermanzano commented 12 years ago

I'm trying to use ActionBar as you're using it in the example provided

    final ActionBar actionBar = (ActionBar) findViewById(R.id.actionbar);
    Intent i = new Intent(getApplicationContext(), HomeActivity.class);
            i.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
    actionBar.setHomeAction(new IntentAction(this, i, R.drawable.ic_title_home_demo));
    actionBar.setTitle("Home");

and I'm getting NullPointerException's for every element of the mBarView (inside ActionBar) when I try to use them. Don't know why.

javiermanzano commented 12 years ago

Solved. I was not targeting the library project to 2.3.3