將工具欄新增到 Xamarin.Android 應用程式

首先,你必須為 NuGet 新增 Xamarin.Android.Support.V7.AppCompat 庫: https ://www.nuget.org/packages/Xamarin.Android.Support.v7.AppCompat/

Resources 下的 values 資料夾中新增名為“styles.xml”的新 xml 檔案: StackOverflow 文件

“styles.xml”檔案應包含以下程式碼:

<?xml version="1.0" encoding="utf-8" ?>
<resources>
<style name="MyTheme" parent="MyTheme.Base">
</style>

<!-- Base theme applied no matter what API -->
<style name="MyTheme.Base" parent="Theme.AppCompat.Light.DarkActionBar">
<item name="windowNoTitle">true</item>
<!--We will be using the toolbar so no need to show ActionBar-->
<item name="windowActionBar">false</item>
<!-- Set theme colors from http://www.google.com/design/spec/style/color.html#color-color-palette-->
<!-- colorPrimary is used for the default action bar background -->
<item name="colorPrimary">#2196F3</item>
<!-- colorPrimaryDark is used for the status bar -->
<item name="colorPrimaryDark">#1976D2</item>
<!-- colorAccent is used as the default value for colorControlActivated
     which is used to tint widgets -->
<item name="colorAccent">#FF4081</item>

<item name="colorControlHighlight">#FF4081</item>
<!-- You can also set colorControlNormal, colorControlActivated
     colorControlHighlight and colorSwitchThumbNormal. -->

下一步是將包含工具欄控制元件定義的“toolbar.axml”檔案新增到 layout 資料夾:

StackOverflow 文件

新增以下程式碼來定義工具欄:

<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:minHeight="?attr/actionBarSize"
android:background="?attr/colorPrimary"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />

現在請開啟“Main.axml”檔案,並在第一個佈局的結束標記下方新增以下程式碼。你的程式碼應如下所示:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">

    <include android:id="@+id/toolbar" layout="@layout/toolbar" />

</LinearLayout> 

現在,你必須新增有關應用使用的主題的資訊。開啟 AndroidManifest 檔案並將主題資訊新增到 application 標籤:

<application android:theme="@style/MyTheme" android:allowBackup="true" android:icon="@mipmap/icon" android:label="@string/app_name">

最後一步是連線 Activity 檔案中的工具欄。開啟“MainActivity.cs”檔案。你必須將派生從活動更改為 AppCompatActivity。現在獲取對工具欄的引用,並將其設定為 OnCreate 方法中活動的預設工具欄。你還可以定義標題:

var toolbar = FindViewById<Android.Support.V7.Widget.Toolbar>(Resource.Id.toolbar);
        SetSupportActionBar(toolbar);
        SupportActionBar.Title = "Hello from Appcompat Toolbar";

整個方法應如下所示:

protected override void OnCreate(Bundle savedInstanceState)
    {
        base.OnCreate(savedInstanceState);
        SetContentView(Resource.Layout.Main);

        var toolbar = FindViewById<Android.Support.V7.Widget.Toolbar>(Resource.Id.toolbar);
        SetSupportActionBar(toolbar);
        SupportActionBar.Title = "Hello from Appcompat Toolbar";
    }

重建專案並啟動它以檢視結果:

StackOverflow 文件