我使用界面有问题。在我的片段中,我创建了接口,我想在类中使用它(使用适配器),类不是活动。类实现了fragment的接口,我尝试使用如下的意图:
Intent intent = new Intent(getContext(), Adapter.class);
intent.putExtra("interface", inter);
startActivity(intent);
和
Intent intent = getIntent();
removelist inter = (removelist) intent.getSerializableExtra("interface");
在适配器中我应该包含这个,这是一个正确的解决方案吗?
答案 0 :(得分:0)
你肯定做错了什么。我不认为开始一个活动并将任何类型的回调传递给它是一个好主意,在leas architecture-wise