views:

46

answers:

1

Hi,

i made a extended a View, overwrote the 3 View Contructors and tried to insert it on my xml of a widget.

The Exception is:

java.lang.ClassNotFoundException: com.mypackage.myView in loader dalvik.system.PathClassLoader@4001e710

is it possible to use custom views in Widgets?

+3  A: 

is it possible to use custom views in Widgets?

If by "Widgets" you mean "app widgets", then, no. You cannot use custom View classes in app widgets.

CommonsWare