I'm extending in my class AsyncTask
and I have a context passed however from another activity.
So I tried this:
listview = (ListView) findViewById(R.id.listview1);
Error:
The method findViewById(int) is undefined for the type loadSomeStuff
I tried this also:
listview = (ListView) ctx.findViewById(R.id.listview1);
Error:
The method findViewById(int) is undefined for the type Context
How can I get over this error?