當我使用Digital clock
和textview marquee
,然後textview marquee
不起作用 - 如果我刪除數字時鐘,它完美的作品。TextView字幕和數字時鐘
TextView tv = new TextView(this);
tv.setLayoutParams(paramsSong);
tv.setEllipsize(TruncateAt.MARQUEE);
tv.setFocusableInTouchMode(true);
tv.setFreezesText(true);
tv.setSingleLine(true);
tv.setMarqueeRepeatLimit(-1);
tv.setText("aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa");
tv.setSelected(true);
rl.addView(tv);
DigitalClock dg = new DigitalClock(this);
rl.addView(dg);
/*if I remove digital clock then it works*/
我不能同時使用兩者嗎?有沒有解決方法?
嘗試設置DigitalClock(又名寬度和高度) –
RU的恆定大小的'DigitalClock'的'LayoutParams'設置到右側或左側的' TextView'? – bakriOnFire
Thanx @MarekSebera現在正在工作。 –