2011-09-08 10:23:44 +00:00
|
|
|
|
|
|
|
<menu xmlns:android="http://schemas.android.com/apk/res/android">
|
2011-11-24 13:04:58 +00:00
|
|
|
|
2011-11-27 12:47:38 +00:00
|
|
|
<item android:id="@+id/preferences"
|
|
|
|
android:icon="@android:drawable/ic_menu_preferences"
|
|
|
|
android:title="@string/preferences"
|
|
|
|
android:showAsAction=""/>
|
|
|
|
|
2011-11-24 13:04:58 +00:00
|
|
|
<item android:id="@+id/login"
|
|
|
|
android:icon="@android:drawable/ic_menu_rotate"
|
|
|
|
android:title="@string/login"
|
|
|
|
android:showAsAction="ifRoom|withText"/>
|
|
|
|
|
2011-11-24 14:57:44 +00:00
|
|
|
|
2011-11-24 05:59:11 +00:00
|
|
|
<item android:id="@+id/show_feeds"
|
2011-11-26 08:46:17 +00:00
|
|
|
android:icon="@android:drawable/ic_menu_agenda"
|
2011-11-24 06:06:47 +00:00
|
|
|
android:title="@string/menu_all_feeds"
|
|
|
|
android:showAsAction=""/>
|
2011-11-28 18:36:13 +00:00
|
|
|
|
|
|
|
<item android:id="@+id/back_to_categories"
|
|
|
|
android:icon="@android:drawable/ic_menu_revert"
|
|
|
|
android:title="@string/back_to_categories"
|
|
|
|
android:showAsAction="ifRoom|withText"/>
|
|
|
|
|
2011-11-24 14:57:44 +00:00
|
|
|
<item android:id="@+id/close_article"
|
|
|
|
android:icon="@android:drawable/ic_menu_close_clear_cancel"
|
|
|
|
android:title="@string/close_article"
|
|
|
|
android:showAsAction="ifRoom|withText"/>
|
2011-11-26 08:17:38 +00:00
|
|
|
|
2011-11-26 08:46:17 +00:00
|
|
|
<item android:id="@+id/load_more_articles"
|
2011-11-26 06:52:50 +00:00
|
|
|
android:icon="@android:drawable/ic_menu_more"
|
|
|
|
android:title="@string/load_more_articles"
|
|
|
|
android:showAsAction="ifRoom|withText"/>
|
|
|
|
|
2011-11-26 08:17:38 +00:00
|
|
|
<item android:id="@+id/show_all_articles"
|
|
|
|
android:icon="@android:drawable/ic_menu_agenda"
|
|
|
|
android:title="@string/show_all_articles"
|
2011-11-26 15:04:54 +00:00
|
|
|
android:showAsAction=""/>
|
2011-11-26 08:17:38 +00:00
|
|
|
|
2011-11-24 16:11:10 +00:00
|
|
|
<item android:id="@+id/update_feeds"
|
2011-11-24 06:06:47 +00:00
|
|
|
android:icon="@android:drawable/ic_menu_rotate"
|
2011-11-24 16:11:10 +00:00
|
|
|
android:title="@string/update_feeds"
|
|
|
|
android:showAsAction=""/>
|
2011-11-24 15:35:28 +00:00
|
|
|
|
2011-11-24 16:11:10 +00:00
|
|
|
<item android:id="@+id/share_article"
|
|
|
|
android:icon="@android:drawable/ic_menu_share"
|
|
|
|
android:title="@string/share_article"
|
|
|
|
android:showAsAction="ifRoom"/>
|
2011-11-27 12:22:03 +00:00
|
|
|
|
|
|
|
<item android:id="@+id/toggle_marked"
|
2011-11-27 12:47:38 +00:00
|
|
|
android:icon="@android:drawable/star_off"
|
2011-11-27 12:22:03 +00:00
|
|
|
android:title="@string/toggle_marked"
|
|
|
|
android:showAsAction=""/>
|
|
|
|
|
|
|
|
<item android:id="@+id/toggle_published"
|
2011-11-27 12:47:38 +00:00
|
|
|
android:icon="@drawable/ic_menu_rss"
|
2011-11-27 12:22:03 +00:00
|
|
|
android:title="@string/toggle_published"
|
|
|
|
android:showAsAction=""/>
|
2011-11-28 06:54:19 +00:00
|
|
|
|
|
|
|
<item android:id="@+id/set_unread"
|
|
|
|
android:icon="@android:drawable/ic_menu_recent_history"
|
|
|
|
android:title="@string/set_unread"
|
|
|
|
android:showAsAction=""/>
|
|
|
|
|
2011-11-27 12:22:03 +00:00
|
|
|
|
2011-11-24 14:57:44 +00:00
|
|
|
<item android:id="@+id/logout"
|
|
|
|
android:title="@string/logout"
|
|
|
|
android:showAsAction=""/>
|
|
|
|
|
2011-09-08 10:23:44 +00:00
|
|
|
</menu>
|