我正在尝试制作一个Android ESC / POS打印机编辑器UI。 ESC / POS在打印文本时几乎没有选项,它们可以混合在一起:小,下划线,粗体,双宽(宽),双高(高)。 虽然ESC / POS打印机部件没问题,但在尝试用android UI中的文本视图表示它时我遇到了一些问题。
虽然'小'可以解决改变字体大小,我正在努力实现 通过设置View.setScaleX(1.5f)和View.setScaleY(1.5f)设置宽和高。
我正在以programmaticaly方式创建这些视图并将它们添加到linearLayout容器中。
更改比例后,视图边界不会更新。宽选项超出了视界范围。我试图在视图上使用view.invalidate(),它的父级认为它会重新计算边界但它不起作用。
onClick(View v) {
PrinterCommands.FormatedText textComand = new PrinterCommands.FormatedText("Hello world");
textComand.setTall(r.nextBoolean());
textComand.setUnderlined(r.nextBoolean());
textComand.setBold(r.nextBoolean());
textComand.setWide(r.nextBoolean());
textComand.setSmall(r.nextBoolean());
TextView textView = new TextView(CommandsViewActivity.this);
StringBuilder sb = new StringBuilder("Hello world");
// v.setText(String.valueOf(position));
if (textComand.isSmall()) {
sb.append(" small");
textView.setScaleX(0.5f);
textView.setScaleY(0.5f);
}
if (textComand.isBold()) {
sb.append(" bold");
textView.setTypeface(null, Typeface.BOLD);
}
if (textComand.isTall()) {
sb.append(" tall");
textView.setScaleY(1.5f);
}
if (textComand.isWide()){
sb.append(" wide");
textView.setScaleX(1.5f);
}
if (textComand.isUnderlined()) {
sb.append(" underlined");
SpannableString s = new SpannableString(sb.toString());
s.setSpan(new UnderlineSpan(), 0, s.length(), 0);
textView.setText(s);
} else textView.setText(sb.toString());
LinearLayout.LayoutParams p = new LinearLayout.LayoutParams(ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT);
textView.setGravity(Gravity.START|Gravity.CENTER);
p.setMargins(16,16,16,16);
textView.setLayoutParams(p);
container.addView(textView);
}
});