java.lang.InstantiationException: class has no zero argument constructor

僤鯓⒐⒋嵵緔 提交于 2019-11-29 02:49:47

Your

inner Broadcast receiver must be static ( to be registered through Manifest)

OR

Non-static broadcast receiver must be registered and unregistered inside the Parent class

for this.

I was using an Inner broadcast reciver, without registering it within the class. Either make it static and register in Manifest , or Make it non static and register and unregister inside the parent class .

A non-static inner class cannot be registered via the AndroidManifest.xml. You can either:

Register it dynamically as outlined in this thread, and remove the empty constructor.

Or,

Make your inner class static, and register it in the AndroidManifext.xml.

just make your Receiver Class static like:

public [static] class ReceiverClass extends BroadcastReceiver

e~~I just meet that problem,and I refactor the class NetworkChangeReceiver to an another place

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!