How do I access setSupportActionBar(Toolbar toolbar)
inside FragmentActivity
?
I can't access it inside FragmentActivity
toolbar = (Toolbar) findViewById(R.id.search_bar);
setSupportActionBar( toolbar);
How do I access setSupportActionBar(Toolbar toolbar)
inside FragmentActivity
?
I can't access it inside FragmentActivity
toolbar = (Toolbar) findViewById(R.id.search_bar);
setSupportActionBar( toolbar);
Instead of using setSupportActionBar use setActionBar Eg:
Use ActionBarActivity from support library, ActionBarActivity extends FragmentActivity, So that you can get SupportFragmentManager and set toolbar as actionbar
Ex:
With the latest version of the support library you should make your Activity extend
AppCompatActivity
asActionBarActivity
has been deprecated.It provides the same functionality as your ActionBarActivity previously did. You shouldn't need to make any further changes.