26-Jul-14 (Created: 26-Jul-14) | More in 'Android Basic UI'

Here is one good way to document menus in your Android programs

An activity or window in Android is a collaboration or collusion of a number of assets such as the activity java file, the layout file, the menu files, the string values xml file etc.

You may want to tie these files together through documentation. For example in the activity file you want to indicate what menu files are used and what layout files are used.

Similarly in the menus file you want to document each menu item and indicate what it does and what java file it is implemented in. What follows is a quick example.

You may want to further embellish it more than what is in here.