My code like this:
...
final Component component = Text.create(context)
.isSingleLine(true)
.ellipsize(TextUtils.TruncateAt.MARQUEE)//marquee not working
.text("Hello World")
.widthDip(100)
.textSizeDip(30)
.selected(true)
.focusable(true)
.build();
setContentView(LithoView.create(context, componentList));
...
My code like this: ... final Component component = Text.create(context) .isSingleLine(true) .ellipsize(TextUtils.TruncateAt.MARQUEE)//marquee not working .text("Hello World") .widthDip(100) .textSizeDip(30) .selected(true) .focusable(true) .build(); setContentView(LithoView.create(context, componentList)); ...
why the text content not marqueen?