Android Oreo introduces text justification in Text View.
I created a custom renderer for Label and add the following in Visual Studio 15.6.6.
if (Android.OS.Build.VERSION.SdkInt >= Android.OS.BuildVersionCodes.O)
{
textview.SetJustificationMode(JUSTIFICATION_MODE_INTER_WORD);
}
However, VS says Text View does not contain a definition for SetJustificationMode.
I have installed Android 8.0 (API26) and Android 8.1 (API27) SDK.
Any assistance is much appreciated. Thanks.