Android 对齐中心工具栏的菜单项

Android 对齐中心工具栏的菜单项,android,menu,toolbar,Android,Menu,Toolbar,是否可以将工具栏的菜单图标对齐在中间?我使用了另一种显示方式,但我在工具栏布局中放置了图像。现在我想用菜单图标试试:) 这是我的密码 bottm工具栏 <?xml version="1.0" encoding="utf-8"?> <android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match

是否可以将工具栏的菜单图标对齐在中间?我使用了另一种显示方式,但我在工具栏布局中放置了图像。现在我想用菜单图标试试:)

这是我的密码

bottm工具栏

<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.Toolbar   
 xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
xmlns:appo="http://schemas.android.com/apk/res-auto"
android:minHeight="50dp"
android:background="@color/colorPrimary"
appo:theme="@style/ToolbarTheme"
appo:popupTheme="@style/Theme.AppCompat.Light">

menu.xml

<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<item
    android:id="@+id/news"
    app:showAsAction="always"
    android:orderInCategory="100"
    android:icon="@drawable/new_icon"
    android:title="News">

</item>

<item
    app:showAsAction="always"
    android:id="@+id/camera"
    android:icon="@drawable/camera_icon"
    android:orderInCategory="100"
    android:title="Camera"
   ></item>
<item
    app:showAsAction="always"
    android:id="@+id/facebook"
    android:icon="@drawable/facebooc_image"
    android:orderInCategory="100"
    android:title="Camera"
    >
</item>


您可以尝试以下方便的实现,而不是尝试将菜单项居中:

<android.support.v7.widget.Toolbar
    android:id="@+id/toolbar"
    android:layout_width="match_parent"
    android:layout_height="?attr/actionBarSize"
    android:elevation="4dp"
    android:background="?attr/colorPrimary">

        // Here is the main code for  your Midle Buttons
        <LinearLayout
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:orientation="horizontal"
            android:layout_gravity="center"
            android:gravity="center">
            <Button
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:background="@drawable/ic_launcher"
                android:id="@+id/button1"/>
            <Button
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:background="@drawable/ic_launcher"
                android:id="@+id/button2"/>
            <Button
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:background="@drawable/ic_launcher"
                android:id="@+id/button3"/>
            <Button
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:background="@drawable/ic_launcher"
                android:id="@+id/button4" />
        </LinearLayout>

</android.support.v7.widget.Toolbar>

//以下是中间按钮的主要代码
只是一个例子。您可以将图像添加到其中,就像添加到RelativeLayout或LinearLayout中一样。比如说,

<android.support.v7.widget.Toolbar
    android:id="@+id/toolBar"
    android:layout_width="match_parent"
    android:layout_height="?attr/actionBarSize"
    android:background="?attr/colorPrimary"
    app:layout_scrollFlags="scroll|enterAlways">

    <TextView
        android:id="@+id/toolbar_title"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:ellipsize="end"
        android:singleLine="true"
        android:textAllCaps="true"
        android:textColor="@color/white_color"
        android:textSize="@dimen/textSize12" />

</android.support.v7.widget.Toolbar>

试试这个:
app:buttonGravity=“center\u vertical”
在工具栏内部

没有办法将选项菜单居中,您必须将其放在
工具栏内部