Hi, I have a masterdetail page Created in this way and for Android I use Holo Theme
this.Master = new ContentPage
{
Title = "Advanced Setup",
Content = new TableView
{
Intent = TableIntent.Menu,
Root = new TableRoot
{
new TableSection("Common")
{
new TextCell
{
Text = "Menu1",
Command = navigateCommand,
CommandParameter = typeof(Views.Advanced.Menu1)
},
new TextCell
{
Text = "Menu2",
Command = navigateCommand,
CommandParameter = typeof(Views.Advanced.Menu2)
},
new TextCell
{
Text = "Menu3",
Command = navigateCommand,
CommandParameter = typeof(Views.Advanced.Menu3)
},
},
new TableSection("Setup 1")
{
new TextCell
{
Text = "Menu s1",
Command = navigateCommand,
CommandParameter = typeof(Views.Advanced.Menus1)
},
new TextCell
{
Text = "Menu s2",
Command = navigateCommand,
CommandParameter = typeof(Views.Advanced.Menus2)
},
},
}
}
}
};
Is possible change on android the style of TableSection (in this example "common" and "setup 1" menu) ?
Thanks in advanced