Android开发日志(4)

神奇问题赏至0527

This Activity already has an action bar supplied by the window decor

solution:

Manifest:->add

    <item name="windowActionBar">false</item>

    <item name="windowNoTitle">true</item>


Styles.xml->add_
<item name="windowActionBar">false</item>

source:https://stackoverflow.com/questions/26515058/this-activity-already-has-an-action-bar-supplied-by-the-window-decor

猜你喜欢

转载自www.cnblogs.com/yachang007/p/12972064.html