You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
1.0 KiB
30 lines
1.0 KiB
9 years ago
|
<menu xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||
|
xmlns:tools="http://schemas.android.com/tools"
|
||
|
tools:context="org.jmonkeyengine.jme3androidexamples.MainActivity">
|
||
|
|
||
|
This menu should show up as 3 icons in the app toolbar.
|
||
|
|
||
|
<item
|
||
|
android:id="@+id/optionMouseEvents"
|
||
|
android:orderInCategory="100"
|
||
|
android:title="@string/strOptionEnableMouseEventsTitle"
|
||
|
app:showAsAction="ifRoom" />
|
||
|
<item
|
||
|
android:id="@+id/optionJoystickEvents"
|
||
|
android:orderInCategory="200"
|
||
|
android:title="@string/strOptionEnableJoystickEventsTitle"
|
||
|
app:showAsAction="ifRoom" />
|
||
|
<item
|
||
|
android:id="@+id/optionKeyEvents"
|
||
|
android:orderInCategory="300"
|
||
|
android:title="@string/strOptionEnableKeyEventsTitle"
|
||
|
app:showAsAction="ifRoom" />
|
||
|
|
||
|
<!--
|
||
|
android:icon="@mipmap/redmonkey"
|
||
|
android:icon="@mipmap/greenmonkey"
|
||
|
android:icon="@mipmap/bluemonkey"
|
||
|
-->
|
||
|
</menu>
|