无法解析OncreateView上的符号ArrayList(片段)

时间:2017-04-01 23:31:21

标签: android android-studio android-fragments arraylist cannot-find-symbol

我想在片段(onCreateView)中初始化一个新的数组列表,但是它说(无法解析符号),我不知道为什么。

enter image description here

如何解决这个问题?因为似乎某些语句在onCreateView方法中发生了变化。

THX

1 个答案:

答案 0 :(得分:0)

好的,我找到了解决方案。

我需要在初始化之前添加ArrayList

ArrayList articlesList = new ArrayList<Articles>();
ListView listview = (ListView) view.findViewById(R.id.list);
ArticlesAdapter adapter = new ArticlesAdapter(getActivity().getApplicationContext(), R.layout.articles, articlesList);