我實現了一個從2.1開始運行的應用程序。但我的應用程序具有退出應用程序的菜單功能。我將應用程序安裝在冰淇淋三明治(ICS,4.0版)設備中,並且工作正常。但ICS沒有菜單按鈕 - 而不是它有操作欄。我對這個概念很陌生。我想要將它集成到我的應用程序中。我試過但我沒有成功。如何實施Android版本4.0的操作欄?
爲此,我請按照下列步驟操作:
- 在Android清單
android:targetSdkVersion="11"
。 android:showAsAction="ifRoom|withText"
- >添加到menu.xml文件(這是在菜單文件夾),但我得到以下錯誤:
No resource identifier found for attribute 'showAsAction' in package 'android'
試試[this](http://actionbarsherlock.com/)之一。另外這個[開發者的博客](http://android-developers.blogspot.in/2012/01/say-goodbye-to-menu-button.html) – Praveenkumar