-1
在我的佈局中,我在頂部沒有工具欄的圖像視圖。我想要在我的imageview上有工具欄的後退箭頭按鈕,例如在imageview上帶有後退箭頭的whatsapp配置文件視圖。如何添加工具欄上的後退箭頭按鈕到圖像視圖
我加入這個
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
在我的佈局中,我在頂部沒有工具欄的圖像視圖。我想要在我的imageview上有工具欄的後退箭頭按鈕,例如在imageview上帶有後退箭頭的whatsapp配置文件視圖。如何添加工具欄上的後退箭頭按鈕到圖像視圖
我加入這個
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
編輯您的Toolbar
這樣使用。
<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto" >
<ImageView
android:id="@+id/back_button"
android:layout_width="25dp"
android:layout_height="25dp"
android:src="@drawable/ic_back_button" />
</android.support.v7.widget.Toolbar>
它會是這樣的。
而且,你會從here獲得的圖標。
非常感謝你的回答 –
你可以接受我的回答並投票贊成。 :) –