2017-02-21 11:34:07 +11:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<menu xmlns:android="http://schemas.android.com/apk/res/android"
|
2019-05-20 12:59:04 +02:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
tools:ignore="MenuTitle">
|
|
|
|
<!-- android:title and android:icon are set dynamically in MainActivity -->
|
2017-02-21 11:34:07 +11:00
|
|
|
<item
|
2019-05-20 12:59:04 +02:00
|
|
|
app:showAsAction="ifRoom|withText"
|
2021-02-07 19:19:19 +08:00
|
|
|
android:id="@+id/latest"/>
|
2017-02-21 11:34:07 +11:00
|
|
|
<item
|
2019-05-20 12:59:04 +02:00
|
|
|
app:showAsAction="ifRoom|withText"
|
|
|
|
android:id="@+id/categories"/>
|
2017-02-21 11:34:07 +11:00
|
|
|
<item
|
2019-05-20 12:59:04 +02:00
|
|
|
app:showAsAction="ifRoom|withText"
|
|
|
|
android:id="@+id/nearby"/>
|
2017-02-21 11:34:07 +11:00
|
|
|
<item
|
2019-05-20 12:59:04 +02:00
|
|
|
app:showAsAction="ifRoom|withText"
|
|
|
|
android:id="@+id/updates"/>
|
2017-02-21 11:34:07 +11:00
|
|
|
<item
|
2019-05-20 12:59:04 +02:00
|
|
|
app:showAsAction="ifRoom|withText"
|
|
|
|
android:id="@+id/settings"/>
|
2017-02-21 11:34:07 +11:00
|
|
|
</menu>
|