[android-developers] Re: AppWigets into Applications

2009-08-12 Thread Jeff Sharkey
I don't want to choose de widget from a list, instead of this, I want to insert a specifically widtget, so, is it necessary to use the android.appwidget.action.APPWIDGET_PICK intent in this case? The platform only offers that PICK intent, which requires the user to interactively pick from

[android-developers] Re: AppWigets into Applications

2009-08-10 Thread mtd
Hi, thanks for the answers but I still have doubts because I don't want to choose de widget from a list, instead of this, I want to insert a specifically widtget, so, is it necessary to use the android.appwidget.action.APPWIDGET_PICK intent in this case? Thanks On 7 ago, 10:02, Jeff Sharkey

[android-developers] Re: AppWigets into Applications

2009-08-07 Thread Jeff Sharkey
After you allocate the appWidgetId, you need to launch the android.appwidget.action.APPWIDGET_PICK intent, which will show a dialog that lets the user pick which widget to bind. Here's an example of how Launcher does this:

[android-developers] Re: AppWigets into Applications

2009-08-06 Thread karan
hi, You need to bind your widgets id first, and for doing that you need to do two things 1) you will need a permission for binding 2) you will need to share your process id. Let me know if you still face the problem, On Aug 6, 4:35 pm, mtd martit...@hotmail.com wrote: Hi,   I am trying to