我正在尝试从我的主要活动中的按钮点击事件中从Parse云存储中检索对象,这是从parse.com网站示例复制的简单代码:
ParseQuery<ParSEObject> query = ParseQuery.getQuery("WtestObj2"); query.countInBackground(new CountCallback() { public void done(int count,ParseException e) { if (e == null) { // } else { // } } });
当我构建我得到以下错误,似乎我的“新的CountCallback”正在创建一个匿名的calss不实现抽象方法,但我复制代码100%从parse.com在线文档here,还有什么可能是错误的在我的Android Studio项目中?
‘anonymous com.mobilevision.wtrend.MainActivity$4’ is not abstract and
does not override abstract method done(int,ParseException) in
CountCallback
解决方法
看来你有(或者你的IDE有)导入了错误的ParseException类.它应该是com.parse.ParseException.