Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

RTL support in Android Widgets

Tags:

android

How do I make layouts render with correct layout-direction-configuration in Android Widgets? I have a layout that successfully supports RTL and LTR when rendered in an activity, but when put in a widget it is forced LTR. Any secret to this, or does widgets simply not support RTL-configuration?

like image 596
Nilzor Avatar asked Aug 13 '26 12:08

Nilzor


1 Answers

Set this attibute in parent layout:

android:layoutDirection="ltr"
like image 134
Android.Sulduz Avatar answered Aug 15 '26 02:08

Android.Sulduz