我textview
通过在 xml 中提供属性来创建选取框。但是当我textview
在运行时创建时with the same property
,文本不会滚动。我写了下面的代码。有人遇到这个问题吗?
TextView textView = new TextView(this);
textView.setText("This is marquee text it should scroll");
textView.setEllipsize(TruncateAt.MARQUEE);
textView.setFocusableInTouchMode(true);
textView.setFreezesText(true);
textView.setSingleLine(true);
textView.setMarqueeRepeatLimit(-1);
textView.setFocusable(true);
textView.setSelected(true);