我想要隐藏此溢出菜单: a busy cat http://cdn.intertech.com/PostingImages/Android-Action-Bar-from-the-Options-Menu_E1C5/image_7.png
当我设置targetSdkVersion =" 14"时,我可以隐藏它。但我不想要那个。我不想提供目标版本。
我也在这里尝试了这个(/res/values/styles.xml):
<!-- Application theme. -->
<style name="AppTheme" parent="AppBaseTheme">
<!-- All customizations that are NOT specific to a particular API-level can go here. -->
<item name="android:windowNoTitle">true</item>
<item name="android:windowFullscreen">true</item>
</style>
不工作。我看到3点菜单。
答案 0 :(得分:1)
您是否已在菜单的xml文件中尝试android:showAsAction="never"
?