简体   繁体   中英

Cannot Resolve Symbol ArrayList on OncreateView (fragment)

I want to initialize a new array list in a Fragment (onCreateView), but it says (cannot resolve symbol) and I don't know why.

在此处输入图片说明

How to fix that? since it seems that some statements change in the onCreateView method.

Thx

Ok, I have found the solution.

I just needed to add an ArrayList , before initializing.

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM