I'm trying to add strings into a ListView, which gets called inside another ListView (changing the ContentView inside the OnItemClickListener )

Here's the code:

 lv1.setOnItemClickListener(new OnItemClickListener(){
    public void onItemClick(AdapterView<?> arg0, View arg1, int pos,
            long arg3) {
        // TODO Auto-generated method stub

        if(lv1.getItemAtPosition(pos).equals(cat[0]))                                                       
        {                                                                                                           
            setContentView(R.layout.browse_engineering);
            final ListView engList = (ListView)findViewById(R.id.eng_list);
            engList.setAdapter(new ArrayAdapter<String>(this,android.R.layout.simple_list_item_1,eng_build));


        }                                                                                                                                                                                                     
    }
 });

And this is the error I get:

Error image.

link|improve this question

50% accept rate
2  
The ArrayAdapter constructor wants a Context as the first argument; Activities are Contexts. Since you're instantiating it inside an OnItemClickListener, the this keyword does not refer to the Activity. That needs to be fixed. – Glendon Trullinger Dec 25 '11 at 5:18
feedback

1 Answer

up vote 2 down vote accepted

Replace this

engList.setAdapter(new ArrayAdapter<String>(this,android.R.layout.simple_list_item_1,eng_build));

By this,

engList.setAdapter(new ArrayAdapter<String>(yourActivity.this,android.R.layout.simple_list_item_1,eng_build));

As onItemClickListners are not contexts.

link|improve this answer
Okay got it. Thank you everyone – user1061177 Dec 25 '11 at 5:41
Remember to accept an answer if you got what you wanted. :-) – barry Dec 25 '11 at 9:56
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.