views:

82

answers:

1

Hi,

How can we pass Android Home Screen Widget info ( putExtra maybe ) to an Activity.. What particular method callback will handle this one?

+1  A: 

Use putIntExtra() on the Intent you place in the PendingIntent.

seems that when I place putIntExtra on the Intent, it doesnt update it properly

Try using FLAG_UPDATE_CURRENT when you create your PendingIntent.

CommonsWare
wow!... thank you for that!..