Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 297bb68d authored by Bill Napier's avatar Bill Napier Committed by Android (Google) Code Review
Browse files

Merge "Fix up some issues with the onCreateContextMenu example in the Notepad tutorial."

parents b723ff00 8b0b7af0
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -87,8 +87,8 @@ Open the Notepadv2 class.</p>
    menu callback used for the options menu. Here, we add just one line, which will add a menu item
    to delete a note. Call <code>menu.add()</code> like so:
      <pre>
public boolean onCreateContextMenu(Menu menu, View v
        ContextMenuInfo menuInfo) {
public void onCreateContextMenu(Menu menu, View v,
        ContextMenu.ContextMenuInfo menuInfo) {
    super.onCreateContextMenu(menu, v, menuInfo);
    menu.add(0, DELETE_ID, 0, R.string.menu_delete);
}</pre>
+2 −2
Original line number Diff line number Diff line
@@ -87,8 +87,8 @@ Open the Notepadv2 class.</p>
    menu callback used for the options menu. Here, we add just one line, which will add a menu item
    to delete a note. Call <code>menu.add()</code> like so:
      <pre>
public boolean onCreateContextMenu(Menu menu, View v
        ContextMenuInfo menuInfo) {
public void onCreateContextMenu(Menu menu, View v,
        ContextMenu.ContextMenuInfo menuInfo) {
    super.onCreateContextMenu(menu, v, menuInfo);
    menu.add(0, DELETE_ID, 0, R.string.menu_delete);
}</pre>