Back to project page introToDroid4ed.
The source code is released under:
GNU General Public License
If you think the Android project introToDroid4ed listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.introtoandroid.simplecontentprovider; //from w w w. j av a2s . c o m public class SimpleContentProviderMenuActivity extends MenuActivity { @Override void prepareMenu() { addMenuItem("1. MediaStore", SimpleMediaStore.class); addMenuItem("2. CallLog", SimpleCallLog.class); addMenuItem("3. Bookmarks", SimpleBookmarks.class); } }