我第一次在我的项目中使用ToolBar,所以我不知道如何在android中自定义工具栏.我需要将标题集中到工具栏中,如何做到这一点请告诉我.
预先感谢.
解决方法:
请记住,工具栏只是一个像其他人一样的ViewGroup.所以你可以将视图填充到其中.在您的情况下,您需要在工具栏中使用TextView.
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_height="wrap_content"
android:layout_width="match_parent">
<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="Some Fancy Title"
android:gravity = "center"
android:id="@+id/toolbar_title" />
</android.support.v7.widget.Toolbar>
现在,通过首先检索工具栏然后使用setSupportActionBar()将工具栏设置为操作栏.
由于TextView的重力设置为居中,因此文本必须居中.