我試圖啓動一個新的意圖點擊列表視圖中的項目,但不知道如何得到這個工作。開始新的意圖
下面是代碼:
final ListView lv = getListView();
lv.setTextFilterEnabled(true);
lv.setOnItemClickListener(new OnItemClickListener() {
public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
@SuppressWarnings("unchecked")
Intent intent = new Intent(this, Profileviewer.class);
startActivity(intent);
}
});
我得到一個compiller錯誤的new Intent(this, Profileviewer.class);
The constructor Intent(new AdapterView.OnItemClickListener(){}, Class<Profileviewer>) is undefined
不錯,這件作品現在像一個魅力,只需要再等5分鐘就可以接受這個遊戲! – 2012-07-30 08:44:40
很高興我可以幫助:) – Nermeen 2012-07-30 08:46:23
而不是使用YouActivity.this,你也可以使用getBaseContext();這真的是有這種方法afaik的原因。 – 2012-07-30 08:46:24