Android Question How to make editbox input language friendly ?

Addo

Well-Known Member
Licensed User
Longtime User
When I change the language of typing to none english characters as example arabic the typing direction should change from left to right is there possibility to adjust this in some way ?
 

Addo

Well-Known Member
Licensed User
Longtime User
sadly it doesn't makes the right to left behavior still typing in one direction in both languages arabic and english

B4X:
AddManifestText(
<uses-sdk android:minSdkVersion="5" android:targetSdkVersion="26"/>
<supports-screens android:largeScreens="true"
    android:normalScreens="true"
    android:smallScreens="true"
    android:anyDensity="true"/>)
SetApplicationAttribute(android:icon, "@drawable/icon")
SetApplicationAttribute(android:label, "$LABEL$")
SetApplicationAttribute(android:supportsRtl, "true")
CreateResourceFromFile(Macro, Themes.DarkTheme)
 
Upvote 0
Top