我一直在嘗試在android動態更新我的微調,但沒有我嘗試一直工作。如何動態更新微調器?
這是我用來更新微調器的以下代碼。
typeList = dbAdapter.getList(); //array list with the values
adapter.notifyDataSetChanged();
groupSpinner.postInvalidate();
groupSpinner.setAdapter(adapter);
typeList的值是正確的,但它們並未在Spinner中更新。
我科幻通過創建一個全新的適配器來實現這一點......我覺得我不應該這樣做。 – 2Real 2010-07-19 17:56:57
你有一個適配器的實例嗎?如果再次初始化適配器,notifyDataSetChanged不起作用。 – user1154390 2014-11-10 12:16:44