我正在使用运行完美的 TextView marquee -
final TextView tv = new TextView(MainActivity.this);
tv.setLayoutParams(paramsSong);
tv.setEllipsize(TruncateAt.MARQUEE);
tv.setFocusableInTouchMode(true);
tv.setFreezesText(true);
tv.setSingleLine(true);
tv.setMarqueeRepeatLimit(-1);
tv.setSelected(true);
tv.setText("aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa");
rl.addView(tv);
iv.getViewTreeObserver().addOnGlobalLayoutListener(
new OnGlobalLayoutListener() {
public void onGlobalLayout() {
//if I do nothing inside it marquee works..
//and if I add any TextView or any component then marquee does not work.
}
});
如果我在 GlobalLayout 内什么都不做,那么 marquee 就可以工作。如果我添加任何 TextView 或任何组件,那么 marquee 就不起作用。
我还尝试通过在 GlobalLayout 中给予焦点和 setSelected ,然后它也不起作用。
怎么了?