我正在尝试将我的片段从经典实现切换到AndroidAnnotations。
当我使用@efragment(r.layout.my_fragment)时,我得到一个空白视图。
@EFragment(R.layout.my_fragment)
public class MyFragment extends Fragment {
}
如果我这样走没关系:
public class MyFragment extends Fragment {
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View view = inflater.inflate(R.layout.my_fragment, container, false);
return view;
}
}
我错过了什么?文档中说在我实例化片段时添加下划线,如:
MyFragment fragment = new MyFragment_();
而不是:
MyFragment fragment = new MyFragment();
但正如我所料,这只是一个编译错误。
最佳答案
我发现问题很简单:
在我的片段中添加AndroidAnnotations之后,我只是忘记在我的活动中更新它的导入。它需要从:
import com.project.ui.fragment.MyFragment;
到:
import com.project.ui.fragment.MyFragment_;
之后是:
MyFragment fragment = new MyFragment_();
显然效果更好。