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

Change-Id: I8e9329d3b9da507effafb886a33a0a7e6574a7c7
This commit is contained in:
Bill Napier
2010-09-15 14:35:33 -07:00
parent a29d8394f1
commit 8b0b7af010
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>