NullPointerException for adapter.notifyDataSetChanged?

335 Views Asked by At

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();

enter image description here

2

There are 2 best solutions below

0
On BEST ANSWER

Looks like you never initialize the variable adapter. So it is null. That's why you get the NPE.

0
On

You declared your adapter here:

public ArrayAdapter adapter;

Then in your onCreate(), you created another adapter

ContactAdapter ca = new ContactAdapter(createList(_comment),context);
recList.setAdapter(ca);

So when you call adapter.notifyDataSetChanged();, your adapter is not initialized yet.

Try below code

public class ListContent extends Activity {
    String _comment;
    public ContactAdapter 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 <===
        adapter = new ContactAdapter(createList(_comment),context);
        recList.setAdapter(adapter);
        }

    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;
    }
}