I have a RecyclerView
that get me crash in adapter.notifyDataSetChanged();
:
public class ListContent extends Activity {
String _comment;
public ArrayAdapter adapter;
RecyclerView recList;
Context context;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_listcontent);
recList = (RecyclerView) findViewById(R.id.cardList);
recList.setHasFixedSize(true);
LinearLayoutManager llm = new LinearLayoutManager(this);
llm.setOrientation(LinearLayoutManager.VERTICAL);
recList.setLayoutManager(llm);
_comment = "" here is my string <===
ContactAdapter ca = new ContactAdapter(createList(_comment),context);
recList.setAdapter(ca);
}
private List<Struct_ListContent> createList(String comment) {
List<Struct_ListContent> result = new ArrayList<Struct_ListContent>();
Pattern p = Pattern.compile("<span style=\"color: rgb\\(51, 102, 255\\);\">([^<]*)</span>", Pattern.MULTILINE | Pattern.DOTALL);
for (Matcher m = p.matcher(comment); m.find(); ) {
Struct_ListContent st_list = new Struct_ListContent();
st_list.Title_ = m.group(1);
result.add(st_list);
}
adapter.notifyDataSetChanged();
return result;
}
Get me crash in this line :
adapter.notifyDataSetChanged();
Looks like you never initialize the variable
adapter
. So it isnull
. That's why you get the NPE.