Fragment中的上下文[重复]
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Fragment中的上下文[重复]相关的知识,希望对你有一定的参考价值。
这个问题在这里已有答案:
我试图在底部航行的片段中设置“recyclelerview”。
mExampleAdapter = new SearchItemAdapter(MainActivity.this, mExampleList);
mRecyclerView.setAdapter(mExampleAdapter);
上下文适用于正常活动。但它不在这个片段中。我阅读了建议使用getActivity()for Context的文档,但它不起作用?
mExampleAdapter = new SearchItemAdapter(MainActivity.getActivity(), mExampleList);
mRecyclerView.setAdapter(mExampleAdapter);
答案
mExampleAdapter = new SearchItemAdapter(getApplicationContext(), mExampleList);
mRecyclerView.setAdapter(mExampleAdapter);
以上是关于Fragment中的上下文[重复]的主要内容,如果未能解决你的问题,请参考以下文章