Android artifacts, Action bar -
i have no idea why there arifacts on actionbar. looks that:
application style defined in manifest:
android:style/theme.holo
in activity:
actionbar ab = getactionbar(); ab.setdisplayshowhomeenabled(false); ab.setdisplayshowtitleenabled(false);
how fix that.
you need set background actionbar:
actionbar actionbar = getactionbar(); actionbar.setbackgrounddrawable(getresources().getdrawable(android.r.drawable.screen_background_dark));
that did me;
Comments
Post a Comment