2016-04-13 75 views

回答

0

使用下面的圖像,並將其保存到繪製得到的結果。

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

編輯您的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獲得的圖標。

+0

非常感謝你的回答 –

+0

你可以接受我的回答並投票贊成。 :) –

相關問題