views:

34

answers:

1

Hi

In my thread I create an inner activity 'B' at one point in order to launch another activity for result. I need to declare this in my Android manifest file but can not work out what the name of it is as the standard ".B" does not work as it says that activity does not exist. How can I declare this activity?

Thanks

A: 

Do the reverse stuff, create the class as activity and do the thread as inner class.

Pentium10
Right, I've moved my inner class to the activity that stores a handler to the thread. Any reference to thread variables have to be removed because in order to declare the activity in the manifest it has to not only be public, but also static.
Greenhouse Gases