我只是创建一个简单/空白片段,它应该使用Mosby
框架。每次我使用该getView()
方法时,我都会收到错误消息:
java.lang.ClassCastException:de.xxx.projectZ.packA.AFragment 无法转换为 de.xxx.projectZ.packA.AView
public interface AView extends MvpLceView<List<Persons>> {
// empty
}
我的主持人导致错误
public class APresenter extends MvpBasePresenter<AView> {
PersonsRepository personsRepository;
@Inject
public APresenter(PersonsRepositoryImpl personsRepository) {
this.personsRepository = personsRepository;
}
public void loadPersons() {
// ERROR
if (isViewAttached())
getView().showLoading(true);
List<Person> persons = personsRepository.getPersons();
if (isViewAttached()) {
}
}
}
我的片段标题
public class PersonsFragment
extends MvpLceFragment<SwipeRefreshLayout, List<Person>, AView, APresenter> {
有人知道为什么会这样吗?