Interface for AppCompatActivity

679 Views Asked by At

I want to extend both AppCompatActivity, Fragment activity because I use this code

Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
        setSupportActionBar(toolbar);

My Java file wants to extend AppCompatActivity but I'm using map in that Activity so it already extends FragmentActivity

Since Java does not not support multiple inheritance, are there any interfaces instead of AppCompatActivity or FragmentActivity I can use?

1

There are 1 best solutions below

1
On BEST ANSWER

AppCompatActivity is a subclass of FragmentActivity. So you can use AppCompatActivity in place of FragmentActivity.

If you do not want to use AppCompatActivity, use setActionBar(toolbar) instead of setSupportActionBar(toolbar)