I'm trying to get the height of the ActionBar in Android so I can place in app ads properly in my game. I'm trying to do this using the below code but the ActionBar is always null. What am I doing wrong?
public class MyGame : AndroidGameActivity
{
protected override void OnCreate(Bundle bundle)
{
if (this.ActionBar.IsShowing) {
actionBarHeight = this.ActionBar.CustomView.Height;
}
........
}
}