mirror of
https://github.com/antebudimir/tempus.git
synced 2026-01-03 02:41:40 +00:00
15 lines
496 B
XML
15 lines
496 B
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<menu xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
||
|
|
<item
|
||
|
|
android:id="@+id/action_search"
|
||
|
|
android:icon="@drawable/ic_search"
|
||
|
|
android:title="Search"
|
||
|
|
app:showAsAction="always" />
|
||
|
|
|
||
|
|
<item
|
||
|
|
android:id="@+id/action_settings"
|
||
|
|
android:icon="@drawable/ic_settings"
|
||
|
|
android:title="Settings"
|
||
|
|
app:showAsAction="never" />
|
||
|
|
</menu>
|