在Android中,要在AppBarLayout中添加導航圖標,請按照以下步驟操作:
dependencies {
implementation 'com.google.android.material:material:1.4.0'
}
<com.google.android.material.appbar.AppBarLayout
android:id="@+id/app_bar_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
</com.google.android.material.appbar.AppBarLayout>
<androidx.appcompat.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />
<ImageButton
android:id="@+id/navigation_icon"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_navigation"
app:actionViewClass="androidx.appcompat.widget.ActionView.ActionButton"
app:showAsAction="ifRoom" />
請注意,您需要將@drawable/ic_navigation
替換為您自己的導航圖標資源。
現在,您的AppBarLayout應該包含一個導航圖標。當用戶點擊該圖標時,應用程序將顯示一個包含導航菜單的下拉列表。