不支持操作栏

ActionBar Not Supported

我在 android < 5.0 的应用程序中显示操作栏时遇到问题。

^^4.4版本不显示。操作栏不可见

但同样的应用程序在 android 5.0 中打开时显示完美。

My activity_main
http://pastebin.com/F2c6BGj9
Manifest
http://pastebin.com/AJ7pnbMB
drawer_row
http://pastebin.com/L6de0TnM
styles.xml
http://pastebin.com/0tVpDV3M

我认为是因为你的风格是:

<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">

试试:

<style name="AppTheme" parent="Theme.AppCompat.Light">

更新:

你的 logcat 说:

This Activity already has an action bar supplied by the window decor. Do not request Window.FEATURE_ACTION_BAR and set windowActionBar to false in your theme to use a Toolbar instead.

您必须在您的 activity 中调用 Window.FEATURE_ACTION_BAR 而您没有 post 您的 java 代码并且在查看 [=15= 中的代码之后] 我相信你使用的是工具栏,而不是操作栏,所以也许我给你的答案不起作用,并且看着 this, this and this 我认为你应该把这个而不是我之前说的:

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