Just found a solution parallel to @Pete. This seems to be a bug in Xamarin.Forms at the moment.
I added this to my Styles.xml and installed the theme in my Activity :
<?xml version="1.0" encoding="UTF-8" ?> <resources> <style name="NoActionBarTheme" parent="android:Theme.Holo.Light"> <item name="android:actionBarStyle">@style/invisible_action_bar_style</item> </style> <style name="invisible_action_bar_style" parent="android:Widget.Holo.ActionBar"> <item name="android:height">0dp</item> </style> </resources>
source share