TextSwitcher动画定制

时间:2012-12-31 13:21:49

标签: android animation textview

我可以将TextSwitcher动画与TextView一起使用吗? (我想在Char改变时改变它)

我可以按代码更改文本大小(例如TextView : txtView.setTextSize();)和更改TextColor。

代码很简单

1 个答案:

答案 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);
                }
            }