I have activity like
public class NoteListActivity extends ListActivity{ }
I no longer have the following method: -
setSupportActionBar(toolbar); getSupportActionBar().setHomeButtonEnabled(true); getSupportActionBar().setDisplayHomeAsUpEnabled(true);
But I have the following: -
setActionBar(toolbar); getActionBar().setHomeButtonEnabled(true); getActionBar().setDisplayHomeAsUpEnabled(true);
Please note that I use the material of the supported library in other activities in the same project. This means that I added the correct gradle dependency.
How to use ListActivity and android.support.v7.widget.Toolbar?
source share