Right to left(RTL)
7 Jan 20191 minute to read
Schedule supports to change the layout direction of the control in the RightToLeft
direction by setting the LayoutDirection to Rtl
. Schedule also supports right-to-left when device layout direction and device language is changed.
schedule.LayoutDirection = LayoutDirection.Rtl;
Note
Addandroid:supportsRtl="true"
to your application tag in yourAndroidManifest.xml
file, and make sure yourMinSDKVersion
is 17+. For android settings you can refer here.
<manifest ... >
<uses-sdk android:minSdkVersion="17" />
<application ... android:supportsRtl="true">
</application>
</manifest>