Hi I have a listview and, I am trying to start an activity from the listview by startActivity(class.java);
public class ll2 extends Activity {
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
String[] myList = new String[] {"Accrington Stanley", "Aldershot Town", "Barnet", "Bradford City", "Burton Albion", "Bury", "Cheltenham Town", "Chesterfield", "Crewe A", "Gillingham", "Hereford Utd", "Lincoln City", "Macclesfield T", "Morecombe", "Northampton T", "Oxford Utd", "Port Vale", "Rotherham Utd", "Shrewsbury T", "Southend Utd", "Stevenage", "Stockport C", "Torquay Utd", "Wycombe W"};
ListView lv = new ListView(this);
lv.setAdapter(new ArrayAdapter<String>(this,android.R.layout.simple_list_item_1,myList));
setContentView(lv); }
public void onItemClick(AdapterView<?> parent, View view,int position, long id) {
if ("Bradford City".equals(MyList()[position])){
startActivity(Bradford.java);}
}
}
I am getting a error with this line if("Bradford City".equals(MyList()[position])) method myList() is undefined for the type ll2
I have tried all sorts of methods, and I cannot get anything to work. All I want to do is for each team in the list have a separate java file(Class) With activities in them.
MyList()[position]should bemyList[position].Next you can not start an activity like this
startActivity(Bradford.java);. For starting a new activity you need to create and intent and then set the Activity class. Then you can call startActivity with that intent.And you need to add
Bradfordactivity to your manifest as well.