1,在做dialog 弹框提示的时候,报错了!
android.app.application can not be cast to android.app.Activity
看了一下代码,使用了全局的自定义的application类,但是没有在AndroidManifest.xml中添加该类的声明。也可以把application context 上下文替换成 activity的context文。
2,android.app.Application cannot be cast to myApplication
这个异常是因为在项目中添加了自定义的Application类,但是没有在AndroidManifest.xml中添加该类的声明,调用时编译器会抛出异常: java.lang.ClassCastException: android.app.Application cannot be cast to myApplication
< application
android:label=...
android:name=". myApplication类名">