2016-05-12 15 views

答えて

1

ツールバーのViewGroupあるので、あなたはそれに子ImageViewのを追加することができます。

<android.support.design.widget.AppBarLayout 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:theme="@style/AppTheme.AppBarOverlay"> 

    <android.support.v7.widget.Toolbar 
     android:id="@+id/toolbar" 
     android:layout_width="match_parent" 
     android:layout_height="?attr/actionBarSize" 
     android:background="?attr/colorPrimary" 
     app:popupTheme="@style/AppTheme.PopupOverlay"> 
     <ImageView 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:layout_gravity="center" 
      android:src="@drawable/image"/> 
    </android.support.v7.widget.Toolbar> 

</android.support.design.widget.AppBarLayout> 
1

あなたはsetActionBarを介してアプリケーションアクションバー(とツールバーを使用することができますまたはsetSupportActionBar)。

ツールバーはViewGroupですので、レイアウトを自由に変更できます(イメージビューに画像を追加)

関連する問題