i imported the library from here, inorder to use it as actionbar:
https://github.com/johannilsson/android-actionbar
however i didnt find how can i implement a overflow menu item?
for example, in actionbarsherlock this code to implement the overflow menu item is:
<menu xmlns:android="http://schemas.android.com/apk/res/android" >
<item
android:id="@+id/root_menu"
android:icon="@drawable/ic_menu_moreoverflow_normal_holo_light"
android:showAsAction="always"
android:title="More">
<menu>
<item
android:id="@+id/menu_settings"
android:icon="@drawable/ic_menu_settings_holo_light"
android:showAsAction="never"
android:title="Settings" />
<item
android:id="@+id/menu_about"
android:icon="@drawable/ic_menu_info_details"
android:showAsAction="never"
android:title="About"/>
</menu>
</item>
</menu>
can someone help me with it? maybe the developer of this code can help me?
thanks alot