Using the last android.support.v7.widget.Toolbar
I want to center an image in the toolbar but it keeps staying on the left.
The best way for me would be to use toolbar.setLogo()
method and to center the logo but i don't see any way to do it.
I use a layout for the Toolbar
:
<android.support.v7.widget.Toolbar style="@style/ToolBarStyle"
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?attr/colorPrimary"
android:minHeight="@dimen/abc_action_bar_default_height_material">
</android.support.v7.widget.Toolbar>
Is there any possibility to add an image (logo) to the toolbar and center it?
programatically or in the layout?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…