我已經實施AutoCompleteTextView
搜索。所有SDK版本和目標都支持AutoCompleteTextView
,因爲當我嘗試這sample 它顯示一個空的下拉列表。當我在我的應用程序中使用相同的解析內容放置在一個字符串數組中時,我得到一個異常。需要幫助AutoCompleteTextView搜索
Log.v("Length of a",Integer.toString(a.length));
try{
wv.setVisibility(View.GONE);
place_list.setVisibility(View.VISIBLE);
Log.v("Length of a222222",Integer.toString(a.length));
ArrayAdapter<String> adapter = new ArrayAdapter<String>(Bru_Maps.this, android.R.layout.simple_dropdown_item_1line, a);
textView.setAdapter(adapter);
} catch(Exception e) {
Log.v("Error","search_name"+e);
}
上面給出的代碼很好地打印日誌,但它返回NullPointerException
。
ArrayAdapter<String> adapter = new ArrayAdapter<String>(Bru_Maps.this, android.R.layout.simple_dropdown_item_1line, a);
感謝老兄..我明白了 – 2010-10-26 09:18:43