views:

22

answers:

1

can anybody give example how to implement click event in appwidget in android ?

Thanks

A: 

Use RemoteViews.setOnClickPendingIntent(R.id.view_id, intent) method. The intent parameter should be a well formed Intent object which would match on of the filters at your manifest file.

Konstantin Burov