У меня есть просмотр списка, в который я хочу добавить прослушиватель событий. Следующий простой код завершается с «Source Not Found» при отладке.
Я вспомнил, что использовал точно такой же код для объекта Button, и это не вызвало никаких проблем.
mArticleList = (ListView)findViewById(R.id.ArticleList);
populateArticleList();
mArticleList.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
launchFullArticle();
;
}
});
protected void launchFullArticle() {
// TODO Auto-generated method stub
Context context = getApplicationContext();
CharSequence text = "Hello toast!";
int duration = Toast.LENGTH_SHORT;
Toast toast = Toast.makeText(context, text, duration);
toast.show();
}