|
CentralShoppingList
A central shopping list that all applications can access.
For current progress see: CentralShoppingListDetails CentralShoppingList
About the Shopping ListA shopping list for those who want to save money, not spend it. Android Developer Challenge criteriaOur shopping list application will meet the following criteria of the Android Developer Challenge Terms and Conditions:
How to use the shopping list as a user
How to access the shopping list as a developer
// Initialize the convenience functions:
Shopping.mContentResolver = getContentResolver();
// create a new item
// (or get existing one if it exists already)
long itemID = Shopping.getItem("apples");
// get the default shopping list
long listID = Shopping.getDefaultList();
// put the item into the list
Shopping.addItemToList(itemID, listID);
// show the list
Intent intent = new Intent(Intent.VIEW_ACTION, Shopping.Lists.CONTENT_URI);
startActivity(intent);The member functions defined in the provider class Shopping are convenience functions that communicate to the appropriate ContentProvider. You are free to access the ContentProviders directly as well. Why should I use your shopping list instead of the one provided by insert vendor here?Our shopping list is open source and free, and will stay free forever. You don't need to sign up or sign in anywhere, just download and use it. You will not see any ads that you don't want to see. If you want, you can use the list like any other piece of paper. If you want, you can have your list search for special offers and coupons by your favorite shops on any items you have added. |
Sign in to add a comment
Cool app!
When I click on "View Shopping List", I get an Application Error: org.openintents.samples.presentpicker
An error has occurred in org.openintents.samples.presentpicker. No activity found to handle Intent { action=android.intent.action.VIEW data=content://org.openintents.shopping/lists }.
Is this possibly a bug or did I maybe leave out something in the installation?
Thanks!
same problem