Hi I am writing a Scala-program for Android. http://www.scala-lang.org Scala is compatible to Java, and compiles to Java-Bytecode
I had written Activities in Scala, and used them in the AndroidManifest-File. If the Scala classes directly extending android.app.Activity all is running fine. The problems begin, if the inheritance structure is a little bit deeper. MyActivity extends MyListActivity MyListActivity extends android.app.ListActivity "test.view.MyActivity does not extend android.app.Activity AndroidManifest.xml ..." Where does this message come from ? My workaround is, to write a JAVA-class which extends MyActivity, and used this Java- Class in the AndroidManifest... Why is this working ? How can i suppress this error-message, and convince the plugin to ignore it ? Thx Meiko --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---

