gpt4 book ai didi

android - 在 ActionBar 上正确居中 Logo 的最佳方法是什么?

转载 作者:行者123 更新时间:2023-11-29 17:36:28 26 4
gpt4 key购买 nike

我想要实现的目的是在 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>

如果右侧没有任何图标/溢出操作按钮,这会给出预期的视觉结果。如果存在,则 Logo 将相对于 ActionBar 上的可用空间居中,这使得它看起来好像没有居中,因为 Logo 看起来是左对齐的。

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

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

谢谢!

最佳答案

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

主题

<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>

enter image description here

关于android - 在 ActionBar 上正确居中 Logo 的最佳方法是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30305160/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com