private Spinner mSpnrCustomer;
private List<String> mCustomerList = new ArrayList<String>();
mCustomerList= Arrays.asList(getResources().getStringArray(R.array.customer_names));
mSpnrCustomer.setAdapter(new SpinnerRoomTypeAdapter(context,mCustomerList));
此處,Spinner已成功填充ArrayList中的相應數據。我想添加一個額外的字符串,而不是ArrayList底部的內容,例如「CreateUser
」。選擇這個我需要它來打開一個彈出窗口。我怎樣才能做到這一點?如何在Spinner中添加額外的字符串
之前嘗試添加 –
請發表您的logcat,並在該行呢拋出異常後適配器做notifydatasetchanged? – AndiM