我寫以下應用:notifyDataSetChanged不起作用?
- 存在AutoCompleteTextView字段
- 作爲適配器我使用ArrayAdapter與ListArray
- 的ListArray由一些字符串常量項和一個項目,這將被動態地改變的每次用戶輸入字段中的東西
我帶了TextChangedListener來更新這最後一個列表項。但看起來,更新只發生一次。
我添加了一些我的代碼。可能有人會告訴我,我做錯了什麼。
public class HelloListView extends Activity
{
List<String> countryList = null;
AutoCompleteTextView textView = null;
ArrayAdapter adapter = null;
static String[] COUNTRIES = new String[]
{
"Afghanistan", "Albania", "Algeria", "American Samoa", "Andorra",
"Yemen", "Yugoslavia", "Zambia", "Zimbabwe", ""
};
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
countryList = Arrays.asList(COUNTRIES);
textView = (AutoCompleteTextView) findViewById(R.id.edit);
adapter = new ArrayAdapter(this, android.R.layout.simple_dropdown_item_1line, countryList);
adapter.notifyDataSetChanged();
textView.setAdapter(adapter);
textView.setThreshold(1);
textView.addTextChangedListener(new TextWatcher()
{
public void onTextChanged(CharSequence s, int start, int before, int count)
{
countryList.set(countryList.size()-1, "User input:" + textView.getText());
}
public void beforeTextChanged(CharSequence s, int start, int count,
int after)
{
}
public void afterTextChanged(Editable s)
{
}
});
new Thread()
{
public void run()
{
// Do a bunch of slow network stuff.
update();
}
}.start();
}
private void update()
{
runOnUiThread(new Runnable()
{
public void run()
{
adapter.notifyDataSetChanged();
}
});
}
}
不知道你爲什麼不起作用,但你有沒有考慮使用AsyncTask做你的網絡東西?它給你一個簡單的方法來在另一個線程上工作,然後在UI線程上做一些工作。 http://developer.android.com/reference/android/os/AsyncTask.html – 2010-09-08 17:48:36
但是,如果你看看我的例子,根本沒有網絡的東西。我有ArrayList的數據已經在代碼中。 – Tima 2010-09-09 06:48:16
嘗試了您的建議。它不起作用 – Tima 2010-09-11 09:46:16