リスト アイテムをクリックしても、新しいアクティビティが開始されません。理由は何ですか?他の人が同じコードを実装しており、プログラムが機能しています。この問題はどうすればよいですか?コードは次のとおりです。
public class Menu extends ListActivity {
String classes[]={"StartingPoint","Splash", "You", "Dumb"};
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setListAdapter(new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1, classes));
}
@Override
protected void onListItemClick(ListView l, View v, int position, long id) {
// TODO Auto-generated method stub
super.onListItemClick(l, v, position, id);
String cheese = classes[position];
try {
Class ourclass = Class.forName("com.umer.splashscreenwithsound." + cheese);
//Class ourclass = Class.forName("com.umer.splashscreenwithsound.StartingPoint");
Intent myintent = new Intent(Menu.this,ourclass);
startActivity(myintent);
} catch(ClassNotFoundException e) {
e.printStackTrace();
}
}
}
助けてください。