20 lines
704 B
XML
20 lines
704 B
XML
|
<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="net.indivia.hacklabbo.statusreader.MainActivity" >
|
||
|
|
||
|
<item
|
||
|
android:id="@+id/action_settings"
|
||
|
android:orderInCategory="100"
|
||
|
android:title="@string/menu_action_settings"
|
||
|
android:icon="@drawable/ic_menu_settings"
|
||
|
app:showAsAction="never"/>
|
||
|
|
||
|
<item
|
||
|
android:id="@+id/action_refresh"
|
||
|
android:orderInCategory="99"
|
||
|
android:icon="@drawable/ic_menu_refresh"
|
||
|
android:title="@string/menu_action_refresh"
|
||
|
app:showAsAction="never"/>
|
||
|
</menu>
|