While Switching language from English to Arabic, the layout is changing from left to right. How do I change the textView from left to right. Example (English) Ramesh driving with a speed of 34kmph. (Arabic) hpmk43 fo deeps a htiw gnivird hsemaR
Edit 1: Please find the below image is it correct?
Change all of your app's
left/right
layout properties to newstart/end
equivalents.Simply example, use in
android:gravity
.Don't forget to declare in your app
Manifest
that your app supports RTL mirroring: addandroid:supportsRtl="true"
to the element in yourManifest
file.