這裏是我的代碼後的ListView的onClick,更改活動
this.getListView().setOnItemClickListener(new OnItemClickListener() {
public void onItemClick(AdapterView<?> a, View v, int position, long id) {
Intent i = new Intent(this,lastview.class);
startActivity(i);
}
});
的「本」是一個ListActivity,但我希望下一個活動是一種正常的活動
,我的代碼是錯誤的在這條線
Intent i = new Intent(this,lastview.class);
錯誤信息是
The constructor Intent(new AdapterView.OnItemClickListener(){}, Class<lastview>) is undefined
我該如何解決它?
非常感謝^^ 的問題,通過你的答案解決 的感謝! – bbbbbird1 2012-01-10 04:48:56
歡迎bbbbbird1 ..... – 2012-01-10 04:56:04