在我的应用中,我必须显示价格为EditField
的商品列表。如何在列表中添加EditField
?
对于ListField
,我正在使用此代码
public void drawListRow(ListField listField, Graphics graphics, int index,
int y, int width) {
this.listField=listField;
String text=(String) get(listField, index);
if(holder[index]==null)
{
holder[index]=placeholder;
}
graphics.setColor(rgb);
graphics.setFont(Utility.getBigFont(DConfig.getFSize()+4));
graphics.drawBitmap(3,y+7,placeholder.getWidth(), placeholder.getHeight(),holder[index], 0, 0);
graphics.drawText(text,100,y+15);
graphics.drawText("Price:",100,y+30);
graphics.drawText(CartScreen.price[index],100,y+45);
graphics.drawLine(0, y+74, DConfig.disWidth, y+74);
}
如何将编辑字段添加到行列表
答案 0 :(得分:2)
您将无法将EditField实际放置在那里。最好的办法是只使用VerticalFieldManager并在其中堆叠LabelFields / EditFields。它仍然会滚动,只是不会是ListField。