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.
I'm trying to use ActionBar as you're using it in the example provided
and I'm getting NullPointerException's for every element of the mBarView (inside ActionBar) when I try to use them. Don't know why.