I have a problem with Xamarin.Forms (version 1.2.2) on Android (Nexus 5). The alignment of Button.Text is often not centered after performing a click.
Button.Text
I
Ok, after hours of dealing with this silly bug, I resolved it by implementing a custom renderer and overriding ChildDrawableStateChanged:
ChildDrawableStateChanged
public override void ChildDrawableStateChanged(Android.Views.View child) { base.ChildDrawableStateChanged(child); Control.Text = Control.Text; }