NullPointerException addToRequestQueue(com.android.volley.Request, java.lang.String)' on a null object reference

后端 未结 7 1623
你的背包
你的背包 2020-12-09 08:32

I\'m using AndroidHive register login and it\'s working fine in example project of this login-register.

But after many attempts trying it with CardViews

7条回答
  •  南笙
    南笙 (楼主)
    2020-12-09 09:32

    As N1to says, you need to add your controller in the AndroidManifest.xml, if you don't add it then the onCreate() is never called and when you call AppController.getInstance() the instance is null.

    
    

    It also works for me with:

    
    

提交回复
热议问题