Home | History | Annotate | Download | only in rssexample

Lines Matching refs:Menu

21 import android.view.Menu;
57 // Add our initial menu options. We will tweak this menu when it's loaded swap out
60 public boolean onCreateOptionsMenu(Menu menu){
63 super.onCreateOptionsMenu(menu);
65 menu.add(0, 0, "Start RSS Service", null);
66 menu.add(0, 1, "Stop RSS Service", null);
67 menu.add(0, 2, "Add New Feed", null);
68 menu.add(0, 3, "Delete Feed", null);
69 menu.add(0, 4, "Update All Feeds", null);
76 public boolean onPrepareOptionsMenu(Menu menu){
80 // Handle our menu clicks.
82 public boolean onOptionsItemSelected(Menu.Item item){