svga / SVGAPlayer-Android

Similar to Lottie. Render After Effects / Animate CC (Flash) animations natively on Android and iOS, Web. 使用 SVGAPlayer 在 Android、iOS、Web中播放 After Effects / Animate CC (Flash) 动画。

Home Page:http://svga.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

动态绘制文本,靠左无效,而且无法省略号

peter100u opened this issue · comments

TextPaint textPaint = new TextPaint();
textPaint.setColor(Color.WHITE);
textPaint.setTextSize(18);
textPaint.setTextAlign(Paint.Align.LEFT);
entity.setDynamicText(content, textPaint, "text");

            textPaint.setTextAlign(Paint.Align.LEFT); 这句无效,看到源码,是因为作者绘制x的坐标是中间开始,这是不对的

image