android:windowNoTitle will not hide actionbar with appcompat-v7 21.0.0
问题 I updated appcompat-v7 to lollipop version(21.0.0) then I can't hide ActionBar with following style that worked before. <style name="AppTheme.NoActionBar"> <item name="android:windowActionBar">false</item> <item name="android:windowNoTitle">true</item> </style> I set it to specific activity. <activity android:name=".NoActionBarActivity" android:theme="@style/AppTheme.NoActionBar"/> When I use appcompat-v7 20.0.0 version, actionbar will be hidden as it is intended. How can I hide actionbar