summaryrefslogtreecommitdiff
path: root/app/src/main/res/menu
diff options
context:
space:
mode:
authorByteHamster <ByteHamster@users.noreply.github.com>2022-08-27 11:19:34 +0200
committerGitHub <noreply@github.com>2022-08-27 11:19:34 +0200
commit77104c9038abf579bc5652fc0ec5f941c0f9799f (patch)
tree3e45eaf8f65b222b475e2ec340d0af175c11c23c /app/src/main/res/menu
parentec92722c043cd30bfe9c21171b2a3f62c44884d7 (diff)
downloadAntennaPod-77104c9038abf579bc5652fc0ec5f941c0f9799f.zip
Home Screen (#5864)
Co-authored-by: ueen <ueli.sarnighausen@online.de>
Diffstat (limited to 'app/src/main/res/menu')
-rw-r--r--app/src/main/res/menu/home.xml25
1 files changed, 25 insertions, 0 deletions
diff --git a/app/src/main/res/menu/home.xml b/app/src/main/res/menu/home.xml
new file mode 100644
index 000000000..f80218c0c
--- /dev/null
+++ b/app/src/main/res/menu/home.xml
@@ -0,0 +1,25 @@
+<?xml version="1.0" encoding="utf-8"?>
+<menu xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:custom="http://schemas.android.com/apk/res-auto">
+
+ <item
+ android:id="@+id/action_search"
+ android:icon="@drawable/ic_search"
+ custom:showAsAction="always"
+ android:title="@string/search_label"/>
+
+ <item
+ android:id="@+id/refresh_item"
+ android:title="@string/refresh_label"
+ android:menuCategory="container"
+ custom:showAsAction="always"
+ android:icon="@drawable/ic_refresh"/>
+
+ <item
+ android:id="@+id/homesettings_items"
+ android:icon="@drawable/ic_settings"
+ android:menuCategory="container"
+ android:title="@string/configure_home"
+ custom:showAsAction="never"/>
+
+</menu>