My Xamarin.Android app recently started ignoring the textAlignment property of all the TextView(s). This started happening very unexpectedly in multiple places with no significant changes in code. Also, the Designer in Visual Studio 2019 still shows the correct rendering, even though the app does not. Here are screenshots of the Designer and Emulator:

Here is the code for the TextView & Style Resource:
<TextView android:layout_row="0" style="@style/PopupHeaderTextViewStyle" android:textAlignment="center" android:text="Player Names"/>
<style name="PopupHeaderTextViewStyle">
<item name="android:layout_width">match_parent</item>
<item name="android:layout_height">wrap_content</item>
<item name="android:textAlignment">center</item>
<item name="android:fontFamily">@font/arialfamily</item>
<item name="android:textStyle">bold</item>
<item name="android:textSize">30dp</item>
<item name="android:textColor">@color/Black</item>
</style>
Note that the textAlignment property is included in the Style & inline. As previously stated, this issue started occuring in all places, both static & dynamic. Because the issue started in completely unrelated places at the same time, it leads me to believe that it was not caused by my code, but I cannot figure out what could have caused the problem or how to fix it.
