答案 0 :(得分:2)
工具栏是一个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 :(得分:1)
您可以使用工具栏作为应用程序ActionBar(通过setActionBar或setSupportActionBar)。
工具栏是一个ViewGroup,因此您可以根据需要更改其布局(将imageview添加到您的图像中)