androidandroid-layoutstaticlayout

What is the substitute for deprecated StaticLayout


What should be used instead of:

StaticLayout layout = new StaticLayout(text, paint, width, Alignment.ALIGN_NORMAL, mSpacingMult, mSpacingAdd, false);

Gives this warning:

warning: [deprecation] StaticLayout(CharSequence,TextPaint,int,Alignment,float,float,boolean) in StaticLayout has been deprecated StaticLayout layout = new StaticLayout(text, paint, width, Alignment.ALIGN_NORMAL, mSpacingMult, mSpacingAdd, false);


Solution

  • Use StaticLayout.Builder. Go through here for more details: https://developer.android.com/reference/android/text/StaticLayout.Builder

    for your case use:

    StaticLayout.Builder sb = StaticLayout.Builder.obtain(text, 0, text.length(), paint, width)
                              .setAlignment(Layout.Alignment.ALIGN_NORMAL)
                              .setLineSpacing(mSpacingAdd, mSpacingMult)
                              .setIncludePad (false);
    StaticLayout layout = sb.build();