2
I want to insert an icon like Toolbar
but my Android Studio denounces a conversion error to Toolbar
...
this is the code from which he denounces the error:
actionBarDrawerToggle = new ActionBarDrawerToggle(this, drawerLayout,
R.mipmap.ic_launcher, R.string.drawer_open, DesR.string.drawer_close) {
...
...
};
it gives error in inserting the " R.mipmap.ic_launcher
how do I complete my method then? actionBarDrawerToggle = new Actionbardrawertoggle (this, drawerLayout, "WHAT TO INSERT HERE?" , R.string.drawer_open, R.string.drawer_close) { ... };
– Everton Luis