gpt4 book ai didi

android.support.v7.widget.Toolbar 图标对齐问题

转载 作者:IT老高 更新时间:2023-10-28 23:38:46 25 4
gpt4 key购买 nike

使用新的 Android 5.0 工具栏方法,并按照 Google IO 示例,我在工具栏中设置导航图标和微调器。

问题是,导航图标是底部对齐的。我找不到发生这种情况的任何原因......

[请注意,我特意将其设置为实心正方形,以便更清楚地看到对齐问题]

enter image description here

我的代码如下:

工具栏.xml

<android.support.v7.widget.Toolbar 
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
app:theme="@style/ActionBarThemeOverlay"
app:popupTheme="@style/ActionBarPopupThemeOverlay"
android:id="@+id/toolbar_actionbar"
android:layout_width="match_parent"
android:layout_height="?android:actionBarSize"
/>

主要风格

<style name="ActionBarThemeOverlay" parent="">
<item name="android:background">@color/appMainColor</item>
<item name="android:textColorPrimary">#fff</item>
<item name="colorControlNormal">#ffff</item>
<item name="colorControlHighlight">#3fff</item>
</style>

ActivityMain

getSupportActionBar().setDisplayHomeAsUpEnabled(true);

if (mActionBarToolbar != null)
mActionBarToolbar.setNavigationIcon(R.drawable.ic_drawer);

最佳答案

尝试使用 ?attr/actionBarSize 而不是 android:layout_height="?android:actionBarSize"

<android.support.v7.widget.Toolbar 
android:layout_height="?attr/actionBarSize">

关于android.support.v7.widget.Toolbar 图标对齐问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26446870/

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