简体   繁体   中英

How to correctly handle click events on Widget

There is a task to make smt like todo list on widget (with dynamic number of elements), how to organize this list for click support on this elements. I only found how add click event on one widget layout element (with setOnClickPendingIntent ), and how send text to widget element TextView.

But it's unclear how handle click events for sub-elements, or how get click coordinates(or item) where was click event. I saw widget " Agenda widget " - and it work fine with clicking on different calendar rows.

I will be very much appreciated for help.

But it's unclear how handle click events for sub-elemets

Use setOnClickPendingIntent() .

or how get click coordinates(or item) where was click event

Use different Intents inside of the PendingIntents passed to setOnClickPendingIntent() . By "different", you need something other than an extra to be different, such as a distinct action string.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM