On Wed, Jun 16, 2010 at 4:11 AM, [email protected] <[email protected]> wrote: > I need to implement a reusable view for use in several Android > applications. Would it be possible to develop an appWidget that can be > embedded in an activity, or am I best off providing a customised > component?
IMHO, you are best off creating a custom View. App widgets are designed to go across process boundaries, and so they are more restricted and less efficient for an activity than just an ordinary View. -- Mark Murphy CommonsWare [email protected] http://commonsware.com -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

