481_make sure class name exists错误

来源:互联网 发布:圣思园java视频 编辑:程序博客网 时间:2024/05/17 08:33




make sure class name exists错误




make sure class name exists, is public, and has an empty constructor that is public
一般这种情况就是建了一个类(Fragment,Activity等)
然后有一个带参数的构造函数,比如
public MyFragment(int tag){
}


这样的话要新增一个无参构造函数


public MyFragment(){
}

0 0
原创粉丝点击