我可以将TextSwitcher动画与TextView一起使用吗? (我想在Char改变时改变它)
或
我可以按代码更改文本大小(例如TextView : txtView.setTextSize();
)和更改TextColor。
代码很简单
答案 0 :(得分:0)
将textwitcher视图放在代码的上半部分后:
TextSwitcher questionTextSwitcher = (TextSwitcher) findViewById(R.id.textSwitcher);
questionTextSwitcher.setFactory(new MyTextSwitcherFactory());
在这里你可以操纵你的textview:
private class MyTextSwitcherFactory implements ViewSwitcher.ViewFactory {
public View makeView() {
TextView textView = new TextView(CurrentClass.this);
textView.setGravity(Gravity);
textView.setTextSize(size);
textView.setTextColor(Color);
}
}