-1
我無法在我的Listview中單擊後創建一個intent。完成後,它給出了一個錯誤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