-1
私のリストビューでクリックした後にインテントを作成できません。完了したらそれはエラーにアプリケーションが予期せず停止しましたandroid listview intent
を与え、再び
public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
Intent IntentDiscution = new Intent(view.getContext(), lstchoi.class);
IntentDiscution.setClass(InterfaceAcceuil.this, lstchoi.class);
startActivityForResult(IntentDiscution, 0);
}
logcat出力を投稿できますか? – Pikaling