Clarence Asked:2020-02-07 19:46:34 +0000 UTC2020-02-07 19:46:34 +0000 UTC 2020-02-07 19:46:34 +0000 UTC 活动中的标题对齐 772 BActivity使用一种方法setTitle()来设置表头。但是标题被设置为按下到左边缘。我怎样才能使标题居中toolbar? java 1 个回答 Voted Best Answer STAJLb 2020-02-07T20:48:25Z2020-02-07T20:48:25Z 将以下代码添加到您的 xml 标记中: <android.support.v7.widget.Toolbar android:id="@+id/toolbar_top" android:layout_height="wrap_content" android:layout_width="match_parent" > <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Toolbar Title" android:layout_gravity="center" /> </android.support.v7.widget.Toolbar>
将以下代码添加到您的 xml 标记中: