How do I access setSupportActionBar(Toolbar toolbar) inside FragmentActivity? I can\'t access it inside FragmentActivity
setSupportActionBar(Toolbar toolbar)
FragmentActivity
t
If your class extends FragmentActivity
and if the toolbar is inside the layout you used, it will be set by default. To access it simply do
(Toolbar) findViewById(R.id.toolbar)