データベース内のデータを表示するために DataDisplay.java にこの行があり、それを TextView に表示しています。しかし、「DBAdaptor 型のメソッド getAllDeals は、引数 (TextView、TextView、TextView、TextView、TextView、TextView、TableRow) には適用できません」というエラーが表示されます。
dbAdaptor.getAllDeals(idView, shopView, dealView, locationView, websiteView, categoryView, row );
これは DBAdaptor の getAllDeals 部分です
public Cursor getAllDeals()
{
return db.query(DATABASE_TABLE, new String [] {KEY_SHOP, KEY_DEAL, KEY_LOCATION, KEY_WEBSITE,
KEY_CATEGORY}, null, null, null, null, null);
}