NavigationPage.SetTitleIcon - 适用于iOS但不适用于Android

时间:2017-02-11 19:20:24

标签: xamarin

我添加了

NavigationPage.SetTitleIcon(this," LogoLocales.png");

看起来它应该可以正常工作,但只适用于iOS而非Android。

有什么想法吗?

enter image description here

1 个答案:

答案 0 :(得分:2)

添加

    <ImageView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:src="@drawable/LogoLocales"
    android:layout_gravity="center" />

到toolbar.axml

你去了......