我正在使用列表视图并希望将文本格式化为金钱。我从光标中获取数值数据并将其加载到多个文本框中,即
SimpleCursorAdapter adapter = new SimpleCursorAdapter(this,
R.layout.list_item_sales_order,
null, //was mCursor
new String[]{MyobiliseData.Columns_TempOrders.SALES_ITEM_DESCRIPTION
,MyobiliseData.Columns_TempOrders.SALES_ITEM_QTY
,MyobiliseData.Columns_TempOrders.SALES_ITEM_PRICE_EXGST
,MyobiliseData.Columns_TempOrders.SALES_ITEM_TOTAL_INCGST},
new int[] {R.id.liItemDescription, R.id.liItemQty, R.id.liItemPrice, R.id.liTotal}
);
theListView.setAdapter(adapter);
我可以将文本格式化为货币,例如 $10.56 而不是现在显示的 10.56?
谢谢
安东