blob: 65cb055557c0c343ee72f3a1400d03453657c4fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:compat="http://schemas.android.com/apk/res-auto">
<group android:id="@+id/not_touchscreen">
<item
android:id="@+id/menu_refresh"
android:icon="?attr/refresh"
android:title="@string/menu.refresh"
compat:showAsAction="ifRoom|withText"/>
</group>
<item
android:id="@+id/menu_download_all"
android:title="@string/select_podcasts.server_download"/>
<item
android:id="@+id/menu_delete"
android:title="@string/menu.delete_cache"/>
</menu>
|