我必须制作一个应用程序,我必须在弹出窗口中显示名称列表。
我已经使用数组列表从数据库中获取值,但我不能将它放入数组适配器中。
这是我的代码:
public class Calculator_new_Pop extends Dialog implements View.OnClickListener{
... // rest of the code
ArrayList<String> wallAreas=new ArrayList<String>();
wallAreas=GenericDAO.getWallAreas(room_id);//to fetch the values from databases
ArrayAdapter<String> new_adapter = new ArrayAdapter<String>(Calculator_new_Pop.this,android.R.layout.simple_list_item_1,wallAreas);
_ltvw.setAdapter(new_adapter);
... // rest of the code
}
错误是
“构造函数 ArrayAdapter(Calculator_new_Pop, int, ArrayList) 未定义”
谁能帮我吗?