Android M 更改了 StaticLayout 的设置器,取而代之的是 Builder 模式。但是使用以下代码:
StaticLayout staticLayout = StaticLayout.Builder.obtain("Hello", 0, "Hello".length(), getTextPaint(), 100).build();
我得到以下异常:
进程:sharpdevs.com.legalapp,PID:7695 java.lang.NoClassDefFoundError:解析失败:Landroid/text/StaticLayout$Builder;
我已经尝试了一切,这可能是 Android 错误还是我缺少支持库依赖项?