
org.robolectric.shadows.ShadowAndroidBidi Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of framework Show documentation
Show all versions of framework Show documentation
An alternative Android testing framework.
The newest version!
package org.robolectric.shadows;
import android.text.Layout;
import org.robolectric.annotation.Implementation;
import org.robolectric.annotation.Implements;
@Implements(className = "android.text.AndroidBidi", isInAndroidSdk = false)
public class ShadowAndroidBidi {
@Implementation
public static int bidi(int dir, char[] chs, byte[] chInfo, int n, boolean haveInfo) {
// sorry, arabic, hebrew, syriac, n'ko, imperial aramaic, and old turks!
return Layout.DIR_LEFT_TO_RIGHT;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy