我試圖導航標題圖標,我已經使用了頁面和代碼的一個添加到我的應用程序是:如何在xamarin導航標題替換導航圖標形成
對於iOS:
NavigationPage.SetTitleIcon(this, "icon.png");
對於Android在ToolBar.axml我添加了一個ImageView的,如下圖所示:
<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?attr/colorPrimary"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
android:popupTheme="@style/ThemeOverlay.AppCompat.Light">
<ImageView
android:id="@+id/titleicon"
android:src="@drawable/UstNameIcon"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</android.support.v7.widget.Toolbar>
的問題是,我希望我的Navigtion圖標,讓殘疾人在我的下一個頁面,並把標題,而不是圖標。
對於這一點,我想
對於iOS:
NavigationPage.SetTitleIcon(this, null);
NavigationPage.Title="Title";
對於Android,我如何能實現導航標題的變化?
難道我的解決方案爲您工作? –
嗨@Anoop,你找到了解決方案嗎? –