删除 Anroid 中导航标题中的图标
使用名为 empty.png 的小透明图像
public class MyPage : ContentPage
{
public Page()
{
if (Device.OS == TargetPlatform.Android)
NavigationPage.SetTitleIcon(this, "empty.png");
}
}
使用名为 empty.png 的小透明图像
public class MyPage : ContentPage
{
public Page()
{
if (Device.OS == TargetPlatform.Android)
NavigationPage.SetTitleIcon(this, "empty.png");
}
}