Mono.android 中的 Android 5 缺少操作栏应用程序图标

Action bar app icon missing with Android 5 in Mono.android

如何在 mono.android 中使用 Android 5 实现操作栏应用程序图标丢失,我已经使用

这个linkAction bar app icon missing with Android 5

但它不起作用。

我在你的清单中没有看到 "application" 标签。

我是这样的:

<manifest...

<application android:label="myApplication" android:icon="@drawable/ic_launcher_main" android:theme="@style/android:Theme.Holo.Light"></application>

</manifest>

请检查您的清单中是否声明了 android:theme。 对于我的申请,它是:Theme.Holo.Light

如果我们使用 android:theme="@style/android:Theme.Holo.Light" 它将反映操作栏标题的颜色,并且如果我们使用如下它会正常工作: android:theme="@style/android:Theme.Holo"