mughal2992 / bites-android

Automatically exported from code.google.com/p/bites-android
GNU General Public License v3.0
0 stars 0 forks source link

Create shopping list #8

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Create a shopping list from unticked items in the Ingredients tab. This can 
be either sent as a text message to someone on the way home, or added to a 
shopping list activity e.g. if openintents shoppinglist is installed add 
this to context menu.

Original issue reported on code.google.com by benny.ca...@gmail.com on 12 Apr 2009 at 6:47

GoogleCodeExporter commented 9 years ago
Send as sms works. Need to implement add to shopping list function.

Original comment by benny.ca...@gmail.com on 20 Apr 2009 at 9:01

GoogleCodeExporter commented 9 years ago

Original comment by benny.ca...@gmail.com on 20 Apr 2009 at 9:01

GoogleCodeExporter commented 9 years ago

Original comment by benny.ca...@gmail.com on 7 May 2009 at 7:35

GoogleCodeExporter commented 9 years ago
Use CATEGORY_ALTERNATIVE/CATEGORY_SELECTED_ALERNATIVE to add "Add to shopping 
list" 
intent to context menu.
Shopping list activities will need intent filters with these categories and the 
relevant actions.

Original comment by benny.ca...@gmail.com on 19 Jun 2009 at 12:35

GoogleCodeExporter commented 9 years ago
CATEGORY_ALTERNATIVE works. Need to create an INSERT_ACTION intent with data to 
send 
to shopping list.

Original comment by benny.ca...@gmail.com on 19 Jun 2009 at 1:47

GoogleCodeExporter commented 9 years ago
Successfully sent shopping list items to trolly application via intents.

Original comment by benny.ca...@gmail.com on 26 Jun 2009 at 1:19

GoogleCodeExporter commented 9 years ago
Also allow adding to open intents shopping list....
<action android:name="android.intent.action.INSERT" />                 
<category 
android:name="android.intent.category.DEFAULT" />                               

<data 
android:mimeType="vnd.android.cursor.dir/vnd.openintents.shopping.item" />      

Original comment by benny.ca...@gmail.com on 10 Jul 2009 at 1:19

GoogleCodeExporter commented 9 years ago
OI Shopping list still has a todo for adding items from extras so just have to 
wait 
on the OI developers.

Original comment by benny.ca...@gmail.com on 10 Jul 2009 at 1:33

GoogleCodeExporter commented 9 years ago
Trolly and OI Shopping list implement standard intents worked out with OI 
developers.

Original comment by benny.ca...@gmail.com on 21 Jul 2009 at 4:43