I am working on Xamarin.Forms project, in which I wanted to change the "Display Size" in Android Device Settings through code.
I was able to change the "Font Size" using the below code.
Android.Provider.Settings.System.PutFloat(BaseContext.ContentResolver, Android.Provider.Settings.System.FontScale, (float)0.82f);
However, I am unable to find similar property to change the DisplaySize.
Any help would be much appreciated.