0
我下載這個數據庫腳本,我不知道我怎樣才能將其轉換成一個項目,而不是添加到列表視圖..其一個非常容易理解的數據庫代碼..數據庫添加項目到列表視圖?
http://www.anotherandroidblog.com/wp-content/uploads/2010/08/AABDatabase.zip
多數民衆贊成在它的源代碼..
也即時猜測它可能在這裏?
/**
* retrieves a row from the database with the id number in the corresponding
* user entry field
*/
private void retrieveRow()
{
try
{
// The ArrayList that holds the row data
ArrayList<Object> row;
// ask the database manager to retrieve the row with the given rowID
row = db.getRowAsArray(Long.parseLong(updateIDField.getText().toString()));
// update the form fields to hold the retrieved data
updateTextFieldOne.setText((String)row.get(1));
updateTextFieldTwo.setText((String)row.get(2));
}
catch (Exception e)
{
Log.e("Retrieve Error", e.toString());
e.printStackTrace();
}
}
我不太明白..你可以給我一個代碼的修改版本 –
你最好看看一些ListView的例子,然後嘗試填充我已經回答的。謝謝。 –