我想在我的应用程序中添加 AutoCompleteTextView。我有一个 txt 文件,其中有 2000 多条记录。我想将它用于 AutoCompleteTextView。通常对于小数据,我们使用数组作为:
ArrayAdapter<String> adapter = new ArrayAdapter<String>(this,android.R.layout.select_dialog_item,dataArray);
AutoCompleteTextView actv= (AutoCompleteTextView)findViewById(R.id.autoCompleteTextView1);
actv.setThreshold(1);
actv.setAdapter(adapter);
但是现在如何为 AutoCompleteTextView 使用 txt 文件。任何建议将不胜感激。