我在我的DataDisplay.java中有這條線來顯示數據庫中的數據,並且我將它顯示到TextView中。但它有這個錯誤說「式DBAdaptor方法getAllDeals是不適用的參數(TextView的,TextView的,TextView的,TextView的,TextView的,TextView的,的TableRow」。可有人是一種足以解釋,爲什麼?參數不適用
dbAdaptor.getAllDeals(idView, shopView, dealView, locationView, websiteView, categoryView, row);
這是DBAdaptor
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);
}
我的光標= dbAdaptor.getAllDeals()會出錯。 ,我必須改爲cursor = dbAdaptor.getAllDeals(title,title,title,title,title,title,rowTitle); ? – 2013-02-17 11:45:13
爲什麼你會在那裏有6次標題?你以前曾經用Java編程過嗎? – 2013-02-17 12:10:13