我想要达到的目的是在ActionBar上居中定制徽标。我的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>
如果右侧没有任何图标/溢出操作按钮,则会显示预期的视觉效果。如果有,徽标将相对于ActionBar上的可用空间居中,这使得它看起来没有居中,因为徽标看起来与左侧对齐。
高级别,我想要尝试的是计算屏幕上ActionBar的绝对宽度与其可用宽度之间的差异,然后在徽标上应用layoutMarginLeft
等于该差异的值。我想我可以通过获取可见菜单项的数量并将它们乘以它们的宽度来实现这一点(我想我可以找到它的默认尺寸)。
然而,在我这样做之前,我想知道是否有一个更简单的解决方案,我忽略了?这可以通过自定义布局解决吗?例如?
谢谢!
答案 0 :(得分:1)
我有同样的问题。我最终使用主题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>
答案 1 :(得分:1)
一天后,我发现答案that was posted on StackOverflow一段时间后效果非常好。
以下是它的要点:
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);
答案 2 :(得分:1)
基于 @Amokrane Chentir 响应,我能够创建一个简单的自定义布局文件res / layout / custom_actionbar_content.xml 。它可以包含我们可以自定义的任何文本/图像。
<?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 = ""
}
结果: