当我右边有一个图标而左边有一个后退按钮时,我的imageview居中,但是现在右边有两个图标,它被其中一个图标偏移,想知道我是否可以在xml中执行某些操作保持imageview中心?
这是我的xml,我尝试了布局重力中心,并且重力中心都没有工作。
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="@drawable/action_bar_background"
app:popupTheme="@style/AppTheme.PopupOverlay">
<ImageView
android:layout_width="match_parent"
android:layout_height="30dp"
android:src="@drawable/logo"
android:layout_gravity="center"
android:adjustViewBounds="true"/>
</android.support.v7.widget.Toolbar>
这是菜单文件
<?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/action_comments"
android:orderInCategory="100"
android:title="@string/action_comments"
android:icon="@drawable/ic_action_refresh"
app:showAsAction="always" />
<item
android:id="@+id/action_share"
android:orderInCategory="100"
android:title="@string/action_share"
android:icon="@drawable/ic_action_refresh"
app:showAsAction="always" />
</menu>