org.robolectric.shadows.ShadowStaticLayout Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of shadows-framework Show documentation
Show all versions of shadows-framework Show documentation
An alternative Android testing framework.
package org.robolectric.shadows;
import static android.os.Build.VERSION_CODES.LOLLIPOP;
import static android.os.Build.VERSION_CODES.LOLLIPOP_MR1;
import static android.os.Build.VERSION_CODES.M;
import static android.os.Build.VERSION_CODES.O_MR1;
import static android.os.Build.VERSION_CODES.P;
import android.text.StaticLayout;
import org.robolectric.annotation.HiddenApi;
import org.robolectric.annotation.Implementation;
import org.robolectric.annotation.Implements;
@Implements(value = StaticLayout.class, looseSignatures = true)
public class ShadowStaticLayout {
@Implementation(minSdk = LOLLIPOP, maxSdk = LOLLIPOP_MR1)
@HiddenApi
public static int[] nLineBreakOpportunities(String locale, char[] text, int length, int[] recycle) {
return new int[] {-1};
}
@HiddenApi
@Implementation(minSdk = M, maxSdk = O_MR1)
public static int nComputeLineBreaks(Object nativePtr, Object recycle,
Object recycleBreaks, Object recycleWidths, Object recycleFlags, Object recycleLength) {
return 1;
}
@Implementation(minSdk = P, maxSdk = P)
@HiddenApi
protected static int nComputeLineBreaks(
Object nativePtr,
Object text,
Object measuredTextPtr,
Object length,
Object firstWidth,
Object firstWidthLineCount,
Object restWidth,
Object variableTabStops,
Object defaultTabStop,
Object indentsOffset,
Object recycle,
Object recycleLength,
Object recycleBreaks,
Object recycleWidths,
Object recycleAscents,
Object recycleDescents,
Object recycleFlags,
Object charWidths) {
return 1;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy