2011-11-29 06:46:36 +00:00
|
|
|
<menu xmlns:android="http://schemas.android.com/apk/res/android" >
|
2011-09-08 10:23:44 +00:00
|
|
|
|
2011-11-29 06:46:36 +00:00
|
|
|
<item
|
|
|
|
android:id="@+id/preferences"
|
|
|
|
android:icon="@android:drawable/ic_menu_preferences"
|
|
|
|
android:showAsAction=""
|
|
|
|
android:title="@string/preferences"/>
|
|
|
|
|
|
|
|
<group android:id="@+id/menu_group_logged_in" >
|
|
|
|
|
|
|
|
<group android:id="@+id/menu_group_feeds" >
|
|
|
|
|
|
|
|
<item
|
|
|
|
android:id="@+id/back_to_categories"
|
|
|
|
android:icon="@android:drawable/ic_menu_close_clear_cancel"
|
|
|
|
android:showAsAction="ifRoom|withText"
|
|
|
|
android:title="@string/back_to_categories"/>
|
|
|
|
|
|
|
|
<item
|
|
|
|
android:id="@+id/show_feeds"
|
|
|
|
android:icon="@android:drawable/ic_menu_agenda"
|
|
|
|
android:showAsAction=""
|
|
|
|
android:title="@string/menu_all_feeds"/>
|
|
|
|
|
|
|
|
<item
|
|
|
|
android:id="@+id/update_feeds"
|
|
|
|
android:icon="@android:drawable/ic_menu_rotate"
|
|
|
|
android:showAsAction=""
|
|
|
|
android:title="@string/update_feeds"/>
|
|
|
|
</group>
|
|
|
|
|
|
|
|
<group android:id="@+id/menu_group_headlines" >
|
|
|
|
|
|
|
|
<item
|
|
|
|
android:id="@+id/load_more_articles"
|
|
|
|
android:icon="@android:drawable/ic_menu_more"
|
|
|
|
android:showAsAction="ifRoom|withText"
|
|
|
|
android:title="@string/load_more_articles"/>
|
|
|
|
|
|
|
|
<item
|
|
|
|
android:id="@+id/show_all_articles"
|
|
|
|
android:icon="@android:drawable/ic_menu_agenda"
|
|
|
|
android:showAsAction=""
|
|
|
|
android:title="@string/show_all_articles"/>
|
2011-11-29 11:09:27 +00:00
|
|
|
|
|
|
|
<item
|
|
|
|
android:id="@+id/headlines_select_all"
|
|
|
|
android:title="@string/headlines_select_all"/>
|
|
|
|
|
|
|
|
<item
|
|
|
|
android:id="@+id/headlines_select_unread"
|
|
|
|
android:title="@string/headlines_select_unread"/>
|
|
|
|
|
|
|
|
<item
|
|
|
|
android:id="@+id/headlines_select_none"
|
|
|
|
android:title="@string/headlines_select_none"/>
|
|
|
|
|
|
|
|
<item
|
|
|
|
android:id="@+id/selection_toggle_unread"
|
|
|
|
android:icon="@android:drawable/ic_menu_recent_history"
|
|
|
|
android:showAsAction=""
|
|
|
|
android:title="@string/selection_toggle_unread"/>
|
|
|
|
|
|
|
|
<item
|
|
|
|
android:id="@+id/selection_toggle_marked"
|
|
|
|
android:icon="@android:drawable/star_off"
|
|
|
|
android:showAsAction=""
|
|
|
|
android:title="@string/selection_toggle_marked"/>
|
|
|
|
|
|
|
|
<item
|
|
|
|
android:id="@+id/selection_toggle_published"
|
|
|
|
android:icon="@drawable/ic_menu_rss"
|
|
|
|
android:showAsAction=""
|
|
|
|
android:title="@string/selection_toggle_published"/>
|
|
|
|
|
|
|
|
|
2011-11-29 06:46:36 +00:00
|
|
|
</group>
|
|
|
|
|
|
|
|
<group android:id="@+id/menu_group_article" >
|
|
|
|
|
|
|
|
<item
|
|
|
|
android:id="@+id/close_article"
|
|
|
|
android:icon="@android:drawable/ic_menu_close_clear_cancel"
|
|
|
|
android:showAsAction="ifRoom|withText"
|
|
|
|
android:title="@string/close_article"/>
|
|
|
|
|
|
|
|
<item
|
|
|
|
android:id="@+id/toggle_marked"
|
|
|
|
android:icon="@android:drawable/star_off"
|
|
|
|
android:showAsAction=""
|
|
|
|
android:title="@string/toggle_marked"/>
|
|
|
|
|
|
|
|
<item
|
|
|
|
android:id="@+id/share_article"
|
|
|
|
android:icon="@android:drawable/ic_menu_share"
|
|
|
|
android:showAsAction="ifRoom"
|
|
|
|
android:title="@string/share_article"/>
|
|
|
|
|
|
|
|
<item
|
|
|
|
android:id="@+id/toggle_published"
|
|
|
|
android:icon="@drawable/ic_menu_rss"
|
|
|
|
android:showAsAction=""
|
|
|
|
android:title="@string/toggle_published"/>
|
|
|
|
|
|
|
|
<item
|
|
|
|
android:id="@+id/set_unread"
|
|
|
|
android:icon="@android:drawable/ic_menu_recent_history"
|
|
|
|
android:showAsAction=""
|
|
|
|
android:title="@string/set_unread"/>
|
|
|
|
</group>
|
|
|
|
|
|
|
|
<item
|
|
|
|
android:id="@+id/logout"
|
|
|
|
android:showAsAction=""
|
|
|
|
android:title="@string/logout"/>
|
|
|
|
</group>
|
|
|
|
|
|
|
|
<group android:id="@+id/menu_group_logged_out" >
|
|
|
|
|
|
|
|
<item
|
|
|
|
android:id="@+id/login"
|
|
|
|
android:icon="@android:drawable/ic_menu_rotate"
|
|
|
|
android:showAsAction="ifRoom|withText"
|
|
|
|
android:title="@string/login"/>
|
|
|
|
</group>
|
|
|
|
|
|
|
|
</menu>
|