ポップアップで名前のリストを表示する必要があるアプリケーションを作成する必要があります。
array-list を使用してデータベースから値をフェッチしましたが、それを array-adapter に入れることができません。
ここに私のコードがあります:
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) は未定義です」
誰でも私を助けることができますか?