自定义工具栏内容在某些设备上被切断

时间:2018-07-04 03:50:04

标签: android android-actionbar android-toolbar

我的应用程序中的自定义工具栏出现问题: Example

这似乎仅在某些设备上发生,例如我的个人电话没有此问题,但是7.1.1上的Pixel Emulator出现了此问题。

这里是供我参考的代码。

XML:

<FrameLayout
    android:id="@+id/frame"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

    <android.support.v7.widget.Toolbar
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="?android:attr/actionBarSize"
        android:layout_marginLeft="0dp"
        android:layout_marginTop="8dp"
        android:layout_weight="1"
        android:background="@drawable/ic_nav"
        android:fitsSystemWindows="true"
        android:paddingLeft="0dp"
        android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent">

        <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
            android:id="@+id/titleContainer"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:minHeight="50dp">

            <ImageView
                android:id="@+id/fwLogo"
                android:layout_width="90dp"
                android:layout_height="wrap_content"
                android:layout_alignParentLeft="true"
                android:layout_alignParentTop="true"
                android:layout_gravity="left"
                android:layout_marginTop="8dp"
                android:foregroundGravity="left"
                android:gravity="left"
                android:padding="7dp"
                android:scaleType="fitStart"
                app:srcCompat="@drawable/nav_logo" />

                <TextView
                    android:id="@+id/title"
                    android:layout_width="wrap_content"
                    android:layout_height="match_parent"
                    android:layout_alignParentTop="true"
                    android:layout_centerHorizontal="true"
                    android:layout_gravity="center"
                    android:foregroundGravity="center"
                    android:gravity="center"
                    android:minHeight="50dp"
                    android:text="Baby And You"
                    android:textAppearance="@style/TextAppearance.AppCompat.Title"
                    android:textColor="@android:color/white" />
        </RelativeLayout>
    </android.support.v7.widget.Toolbar>
</FrameLayout>

Java(尽管不确定是否相关):

Toolbar action = findViewById(R.id.toolbar);

setSupportActionBar(action);
setTitle("");

int statusBarHeight = 0;
int resourceId = getResources().getIdentifier("status_bar_height", "dimen", "android");
if (resourceId > 0) {
    statusBarHeight = getResources().getDimensionPixelSize(resourceId);
}

final TypedArray styledAttributes = getTheme().obtainStyledAttributes(new int[]{android.R.attr.actionBarSize});
int actionSize = (int) styledAttributes.getDimension(0, 0);
styledAttributes.recycle();

int height = statusBarHeight + actionSize;

action.setLayoutParams(new  FrameLayout.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, height));

最后是布局检查器: Layout inspector

到目前为止,我已经尝试过手动设置高度,更改高度以包装内容(非常奇怪,两者都导致正确的比例,但是文本消失了)并设置了minHeight(没有效果)。 / p>

任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:0)

我设法弄清楚发生了什么-android:fitsSystemWindows="true"属性引起了这些问题。我只是简单地添加了一些手动填充并删除了该属性,然后一切开始正常运行。