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

This commit is contained in:
Bill Napier
2010-09-23 16:17:11 -07:00
committed by Android (Google) Code Review
2 changed files with 4 additions and 4 deletions

View File

@@ -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>

View File

@@ -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>