如何在imageview上添加工具栏的后退箭头按钮

时间:2016-04-13 11:04:09

标签: android

在我的布局中,我在顶部没有工具栏的图像视图。我希望在我的imageview上有工具栏的后退箭头按钮,就像在imageview上带有后退箭头的whatsapp个人资料视图一样。

我想要这个结果enter image description here

我通过添加此

得到了结果
 getSupportActionBar().setDisplayHomeAsUpEnabled(true);

2 个答案:

答案 0 :(得分:1)

使用以下图像并将其保存为可绘制。

enter image description here

并使用以下代码

<ImageView
            android:id="@+id/back_arrow"
            android:layout_width="25dp"
            android:layout_height="25dp"
            android:src="@drawable/ic_arrow_back" />

答案 1 :(得分:1)

像这样编辑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>

就是这样。

enter image description here

此外,您将从here获取图标。