Skip to content Skip to sidebar Skip to footer

Android Changing Language Configuration Messes Up Layout

So I'm trying to add hebrew support to my android app. I had to change the version to 2.2 so it would have built-in hebrew fonts. Some things in the layout has messed up but I fixe

Solution 1:

I had to add this in the manifest:

<supports-screensandroid:smallScreens="true"android:normalScreens="true"android:largeScreens="true"android:anyDensity="true"
    />

And it worked.

Post a Comment for "Android Changing Language Configuration Messes Up Layout"