The ListViewin Xamarin.Forms has a RowHeightproperty, but it seems no matter what height I set it to.
I use Visual Studio 2013, I have the business edition license for Xamarin and I use the Android emulator MonoForAndroid_API_15 and i believe I have the latest version of everything involved. As of yet I can't run iOS or WinPhone emulators, so I can't compare. Is this just an issue of the Android emulator or is setting the RowHeight property not correct?
Here is my inherited ContentPage (note that I set RowHeight):
public class QuizzesPage : ContentPage
{
private readonly ListView _listView;
public QuizzesPage()
{
Title = "Test";
NavigationPage.SetHasNavigationBar(this, true);
_listView = new ListView {RowHeight = 20};
Content = _listView;
}
protected async override void OnAppearing()
{
base.OnAppearing();
_listView.ItemsSource = new[] {"One", "Two", "Three", "Four", "Five"};
}
}
In App:
public class App
{
public static Page GetMainPage()
{
return new NavigationPage(new QuizzesPage());
}
}
And this is the visual result:

Note that my code is a simplified version of the TODO example used by Xamarin, where you see them set the RowHeight property in the same way as I do.
No matter what I set as RowHeight the rows have the same huge height. What can I do?
Edit 1: I plan to upgrade to Windows 8.1 this week and will then be able to test how it looks on WinPhone. To add a Mac to the network at work I need some permissions first. This is why I am stuck with only the Android emulator as of yet.
Edit 2: I tried setting HasUnevenRows to true, as suggested here, but that only made it accept longer entries, not change the height (or font) of the row, which is way too large for my taste.
Edit 3: I posted a solution/workaround as an answer. At least I get full control over the height of the cells. But RowHeight does not seem to do much.