Android - 带有抽屉菜单的活动标题
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android - 带有抽屉菜单的活动标题相关的知识,希望对你有一定的参考价值。
答案
试试吧。您需要在子图像视图标记中添加android:layout_gravity =“center”。
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/colorPrimary">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_person"
android:layout_gravity="center"
/>
</android.support.v7.widget.Toolbar>
以上是关于Android - 带有抽屉菜单的活动标题的主要内容,如果未能解决你的问题,请参考以下文章