我的 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);
}