Re: [android-beginners] Clicking in an AppWidget

2010-07-02 Thread Mark Murphy
On Fri, Jul 2, 2010 at 3:19 PM, Jake Colman wrote: > I know how to write code that would launch an activity when a button is > pressed on my appwidget.  I would prefer, however, to not dedicate > real-estate for a button.  Is there a way to launch an activity simply > by clicking anywhere in the a

Re: [android-beginners] Clicking in an AppWidget

2010-07-02 Thread Kostya Vasilyev
Jake, You can set an on-click PendingIntent on some other View (such as a Layout). Whether or not it's a good idea - I guess it depends on how pretty you can make it look :) -- Kostya 02.07.2010 23:19, Jake Colman пишет: Is there a way to launch an activity simply by clicking anywhere in th

[android-beginners] Clicking in an AppWidget

2010-07-02 Thread Jake Colman
I know how to write code that would launch an activity when a button is pressed on my appwidget. I would prefer, however, to not dedicate real-estate for a button. Is there a way to launch an activity simply by clicking anywhere in the appwidget? If so, is that a violation of Android standards?