목록보기에서 선택한 노래의 제목을 가져 오려고했지만 강제 종료되었습니다. 어떤 아이디어?검색 ListView에서 선택된 항목
ArrayList<String>songtitle = new ArrayList<String>();
//This is how i popluated sontitle//
ArrayAdapter<String> adapter = new ArrayAdapter<String>(this,R.layout.song,songtitle);
setListAdapter(adapter);
protected void onListIemClick(ListView , View v, int position, long id){
super.onListItemClick(c, v, position, id);
Object o = this.getListAdapter().getItem(position);
String pen = o.toString();
Toast.makeText(this, "You have chosen the color: " + " " + songtitle, Toast.LENGTH_LONG).show();
songtitle 및 selection이란 무엇입니까?, 설명하는 코드를 게시하십시오. –
songtitle 변수는 무엇입니까? 기본 목록? 강제 종료를 유발하는 예외는 무엇입니까? – jkschneider
Eclipse에서 'adb logcat', DDMS 또는 DDMS 퍼스펙티브를 사용하여 LogCat을 검사하고 "강제 닫기"와 관련된 스택 추적을 살펴보십시오. – CommonsWare