mirror of
https://github.com/AntennaPod/AntennaPod.git
synced 2024-12-11 16:36:18 +01:00
20 lines
672 B
XML
20 lines
672 B
XML
|
<?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/refresh_item"
|
||
|
android:title="@string/refresh_label"
|
||
|
android:menuCategory="container"
|
||
|
custom:showAsAction="ifRoom|collapseActionView"
|
||
|
android:icon="?attr/navigation_refresh"/>
|
||
|
|
||
|
<item
|
||
|
android:id="@+id/mark_all_read_item"
|
||
|
android:title="@string/mark_all_read_label"
|
||
|
android:menuCategory="container"
|
||
|
custom:showAsAction="ifRoom|collapseActionView"
|
||
|
android:icon="?attr/navigation_accept"/>
|
||
|
|
||
|
</menu>
|