mirror of
https://github.com/antebudimir/tempus.git
synced 2025-12-31 17:43:32 +00:00
15 lines
536 B
XML
15 lines
536 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="@string/menu_search_button"
|
||
|
|
app:showAsAction="always" />
|
||
|
|
|
||
|
|
<item
|
||
|
|
android:id="@+id/action_settings"
|
||
|
|
android:icon="@drawable/ic_settings"
|
||
|
|
android:title="@string/menu_settings_button"
|
||
|
|
app:showAsAction="never" />
|
||
|
|
</menu>
|