0

我正在从我的数据库中检索数据。在我的数据库中,一个带有价值的字段价格。我检索了数据,我在 a 中显示所有数据ListView(其中包含 a TextView)。我想要显示格式为Price:67787. 但它只显示67787。我搜索了,但我找不到正确的答案。

4

1 回答 1

0
String[] from = new String[] { db.KEY_INCOME};

Add Followin v v v v v v v v v v v

for(int i=0; i<from.length; i++) {

    from[i] = "Price:"+from[i];

}

^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^  ^ ^ ^

int[] to = new int[] {R.id.text1 };

SimpleCursorAdapter notes = new SimpleCursorAdapter(this, R.layout.columnview, c, from, to);

//System.out.println("notes="+notes.getCount());

// setListAdapter(notes); lv.setAdapter(notes);

/* 我认为你正在填充 TextView 的值(在列表视图中)。在那里,你可能已经设置

yourTextView.setText(PRICE_FROM_DATABASE);

而是设置如下:

yourTextView.setText("Price:"+PRICE_FROM_DATABASE);

*/

于 2012-07-09T10:26:05.307 回答