As @Rohit mentioned You can do something like this:
private void ShowToolbarItems()
{
ToolbarItem toolbarItem;
if (Device.OS == TargetPlatform.iOS)
{
// move layout under the status bar
this.Padding = new Thickness(0, 20, 0, 0);
toolbarItem = new ToolbarItem("Sync", "sync_icon.png", () =>
{
SyncService();
}, 0, 0);
ToolbarItems.Add(toolbarItem);
}
if (Device.OS == TargetPlatform.Android)
{
toolbarItem = new ToolbarItem("Sync", "sync_icon.png", () =>
{
SyncService();
}, 0, 0);
ToolbarItems.Add(toolbarItem);
}
Where "sync_icon.png" is a Resource on your iOS/Android/WP projects. Hope this helps.
Here is also a great blog post for Material design in Android:
https://blog.xamarin.com/android-tips-hello-toolbar-goodbye-action-bar/