Android TabActivity with Toolbar - setSupportActionBar() unknow -
is possible use setsupportactionbar()
in tabactivity
? extending appcompatactivity
not possible...
public class tabhost extends tabactivity { public void oncreate(bundle savedinstancestate) { super.oncreate(savedinstancestate); setcontentview(r.layout.tabhost); toolbar toolbar = (toolbar) findviewbyid(r.id.toolbar); setsupportactionbar(toolbar); // unkown getsupportactionbar().setdisplayhomeasupenabled(true); //also
do have switch tabactivity
fragmenttabhost
? thanks
no can't. have extend appcompatactivity
, , shouldn't use tabactivity
in first place. deprecated long time ago. should use solution based on viewpager
, fragment
s achieve same behavior
Comments
Post a Comment