LWUIT源代码分析之浅析TextFiled(4)
来源:未知 责任编辑:责任编辑 发表时间:2013-11-15 19:46 点击:次
if(inputModeWidth > 0 && ta.getInputModeOrder() != null && ta.getInputModeOrder().length > 1) {
if (ta.handlesInput() && ta.getWidth() / 2 > inputModeWidth) {
int drawXPos = ta.getX() + style.getPadding(ta.isRTL(), Component.LEFT);
if((!ta.isRTL() && ta.getAlignment() == Component.LEFT) ||
(ta.isRTL() && ta.getAlignment() == Component.RIGHT)) {
drawXPos = drawXPos + ta.getWidth() – inputModeWidth – style.getPadding(false, Component.RIGHT) – style.getPadding(false, Component.LEFT);
}
g.setColor(style.getFgColor());
g.fillRect(drawXPos, ta.getY() + style.getPadding(false, Component.TOP), inputModeWidth,
ta.getHeight(), (byte) 140);
g.setColor(style.getBgColor());
g.drawString(inputMode, drawXPos, ta.getY() + style.getPadding(false, Component.TOP));
}
}
}
代码一
红色的代码是比较重要的:
首先是得到整个输入框中的值
相关新闻>>
- 发表评论
-
- 最新评论 更多>>