在 ActionBar 上正确居中徽标的最佳方法是什么?

What is the best way to properly center a logo on an ActionBar?

我想实现的目的是在ActionBar上居中一个自定义logo。我的 ActionBar 有以下自定义布局:

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <ImageView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:contentDescription="@string/app_name"
        android:src="@drawable/logo_header" />
</FrameLayout>

如果右侧没有任何 icons/overflow 操作按钮,这将提供预期的视觉效果。如果有,则徽标将相对于 ActionBar 上的可用 space 居中,这使得它看起来没有居中,因为徽标将显示为左对齐。

高级,我想尝试的是计算屏幕上 ActionBar 的绝对宽度与其可用宽度之间的差异,然后在徽标上应用等于该差异值的 layoutMarginLeft。我想我可以通过获取可见菜单项的数量并将它们乘以它们的宽度来实现这一点(我想我可以找到一个默认尺寸)。

但是,在我这样做之前,我想知道是否有一个我忽略的更简单的解决方案?这是否只能通过自定义布局来解决?

谢谢!

我遇到了同样的问题。我最终使用主题 NoActionabr 主题,然后使用工具栏并将视图置于其上,使其居中。

主题

<resources>

    <!-- Base application theme. -->
    <style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
        <!-- Customize your theme here. -->
        <item name="colorPrimary">@color/primary</item>
        <item name="colorPrimaryDark">@color/primary_dark</item>
    </style>

</resources>

XML

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <android.support.v7.widget.Toolbar
        android:id="@+id/toolbar_journal_main"
        android:layout_width="match_parent"
        android:layout_height="56dp"
        android:background="@color/primary"
        app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
    </android.support.v7.widget.Toolbar>

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="56dp"
        android:layout_marginLeft="72dp"
        android:layout_marginRight="72dp">

        <ImageView
            android:id="@+id/datePrevious"
            android:layout_width="48dp"
            android:layout_height="48dp"
            android:layout_centerVertical="true"
            android:background="@drawable/button_flat_selector"
            android:clickable="true"
            android:padding="8dp"
            android:src="@mipmap/ic_chevron_left"/>

        <TextView
            android:id="@+id/tbDate"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:gravity="center"
            android:text="Today, April 20"
            android:textColor="@color/white"
            android:textSize="18dp"
            android:textStyle="bold"/>

        <ImageView
            android:id="@+id/dateNext"
            android:layout_width="48dp"
            android:layout_height="48dp"
            android:layout_alignParentRight="true"
            android:layout_centerVertical="true"
            android:background="@drawable/button_flat_selector"
            android:clickable="true"
            android:padding="8dp"
            android:src="@mipmap/ic_chevron_right"/>
    </RelativeLayout>
</RelativeLayout>

一天后,我找到了 that was posted on Whosebug 不久前的答案,效果很好。

要点如下:

ActionBar.LayoutParams lp = new LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.MATCH_PARENT, Gravity.CENTER);

View customView = getLayoutInflater().inflate(R.layout.action_bar_custom_view, null);

getActionBar().setDisplayOptions(ActionBar.DISPLAY_SHOW_CUSTOM)
getActionBar().setCustomView(customView, lp);

根据 @Amokrane Chentir 的回复,我能够创建一个简单的 自定义布局 文件 res/layout/custom_actionbar_content.xml。它可以包含我们可以自定义的任何 text/images。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent" android:layout_height="match_parent">

    <android.support.v7.widget.Toolbar
        android:id="@+id/toolbar_journal_main"
        android:layout_width="match_parent"
        android:layout_height="56dp"
        android:background="@android:color/transparent">

        <TextView
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:gravity="center_horizontal"
            android:text="INSIDE ORIGINAL ACTION TOOLBAR"/>

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

然后在 Acivity oncreate():

override fun onCreate(savedInstanceState: Bundle?) {
    super.onCreate(savedInstanceState)
    setContentView(R.layout.activity_main)

    val abLayoutParams = ActionBar.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.MATCH_PARENT, Gravity.CENTER);
    val abCustomView = layoutInflater.inflate(R.layout.custom_actionbar_content, null)
    supportActionBar?.displayOptions = ActionBar.DISPLAY_SHOW_CUSTOM
    supportActionBar?.setCustomView(abCustomView, abLayoutParams)

    title = ""
}

结果: