Elements. Build native projects for any modern development platform, using the language(s) of your choice. Oxygene (Object Pascal), C#, Swift, Java, Go. | RemObjects Software

ActionBar

Language: Iodine, Platform: Cooper, Category: Android
https://github.com/remobjects/ElementsSamples/tree/master/Iodine/Cooper/Android/ActionBar

res\menu\main_activity_actions.xml

<menu xmlns:android="http://schemas.android.com/apk/res/android" >
  <!-- Search, should appear as action button -->
  <item android:id="@+id/action_search"
        android:icon="@drawable/ic_action_search"
        android:title="@string/action_search"
        android:showAsAction="ifRoom" />
  <!-- Settings, should always be in the overflow -->
  <item android:id="@+id/action_settings"
        android:title="@string/action_settings"
        android:showAsAction="never" />
</menu>