Hi,
I have a class that is called when my app launches.
public class MainActivity extends Activity implements NetworkEvent.
In this situation,
list = (ListView) findViewById(R.id.list);
works perfectly. However if I then call a new intent via:
String[] names = object.names();
Intent myIntent = new Intent(MainActivity.this, SimpleList.class); myIntent.putExtra("names", names); startActivityForResult(myIntent, 0);
where SimpleList is defined as:
public class SimpleList extends ListActivity implements NetworkEvent
then when I call
list=(ListView) findViewById(R.id.list);
Log.i("MyApp", "List:" + list);
from within the SimpleList class, list is null :(
How come? Both classes are within the same package.
Thanks.