How do I access setSupportActionBar(Toolbar toolbar) inside FragmentActivity? I can\'t access it inside FragmentActivity
setSupportActionBar(Toolbar toolbar)
FragmentActivity
t
Instead of using setSupportActionBar use setActionBar Eg:
android.widget.Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar); setActionBar(toolbar);