1<?xml version="1.0" encoding="utf-8"?>
2<menu xmlns:android="http://schemas.android.com/apk/res/android">
3    <!--  This is our one standard application action (creating a new note). -->
4    <item android:id="@+id/menu_add"
5          android:icon="@drawable/ic_menu_compose"
6          android:title="@string/menu_add"
7          android:alphabeticShortcut='a'
8          android:showAsAction="always" />
9    <!--  If there is currently data in the clipboard, this adds a PASTE menu item to the menu
10          so that the user can paste in the data.. -->
11    <item android:id="@+id/menu_paste"
12          android:icon="@drawable/ic_menu_compose"
13          android:title="@string/menu_paste"
14          android:alphabeticShortcut='p' />
15</menu>