API Android 级别 19 中未显示工具栏

Toolbar not showing in API Level 19 in Android

我阅读了 this 并尝试重新排序视图,但工具栏在 Android 19.

上仍然不可见

我不知道为什么工具栏在 android 19.

上不可见

这是repo

<RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent">


    <android.support.design.widget.AppBarLayout
        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="?attr/actionBarSize"
            android:background="?attr/colorPrimary"
            android:elevation="4dp"
            android:theme="@style/ThemeOverlay.AppCompat.ActionBar"
            app:popupTheme="@style/ThemeOverlay.AppCompat.Light">

            <ImageButton
                android:id="@+id/bt_picture"
                android:layout_width="36dp"
                android:layout_height="36dp"
                android:background="@drawable/ic_photo_white_24dp"
                android:layout_gravity="end"
                android:layout_marginEnd="10dp"/>

            <ImageButton
                android:id="@+id/bt_pdf"
                android:layout_width="36dp"
                android:layout_height="36dp"
                android:background="@drawable/ic_picture_as_pdf_white_24dp"
                android:layout_gravity="end"
                android:layout_marginEnd="10dp"/>

            <ImageButton
                android:id="@+id/bt_clear"
                android:layout_width="36dp"
                android:layout_height="36dp"
                android:background="@drawable/ic_delete_white_36dp"
                android:layout_gravity="end"
                android:layout_marginEnd="10dp"/>

        </android.support.v7.widget.Toolbar>
    </android.support.design.widget.AppBarLayout>

    <com.example.ricardochampa.signatureapp.SignatureView
        android:id="@+id/signature_view"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />

    <View
        android:id="@+id/line_view"
        android:layout_width="wrap_content"
        android:layout_height="5dp"
        android:layout_alignParentBottom="true"
        android:layout_centerHorizontal="true"
        android:layout_marginBottom="60dp"
        android:layout_marginStart="70dp"
        android:background="@color/grey"/>

    <TextView
        android:id="@+id/textView2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignTop="@+id/line_view"
        android:layout_centerHorizontal="true"
        android:textColor="@color/grey"
        android:layout_marginTop="10dp"
        android:text="@string/sign_here" />

</RelativeLayout>

试试下面的布局。

  <RelativeLayout
    android:layout_width="match_parent"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_height="match_parent">
    <android.support.design.widget.AppBarLayout
        android:id="@+id/appBar"
        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="50dp"
            android:background="@color/colorPrimary"
            android:elevation="4dp"
            android:theme="@style/ThemeOverlay.AppCompat.ActionBar"
            app:popupTheme="@style/ThemeOverlay.AppCompat.Light">

            <ImageButton
                android:id="@+id/bt_picture"
                android:layout_width="36dp"
                android:layout_height="36dp"
                android:layout_gravity="end"
                android:layout_marginEnd="10dp"
                android:background="@drawable/ic_photo_white_24dp" />

            <ImageButton
                android:id="@+id/bt_pdf"
                android:layout_width="36dp"
                android:layout_height="36dp"
                android:layout_gravity="end"
                android:layout_marginEnd="10dp"
                android:background="@drawable/ic_picture_as_pdf_white_24dp" />

            <ImageButton
                android:id="@+id/bt_clear"
                android:layout_width="36dp"
                android:layout_height="36dp"
                android:layout_gravity="end"
                android:layout_marginEnd="10dp"
                android:background="@drawable/ic_delete_white_36dp" />

        </android.support.v7.widget.Toolbar>
    </android.support.design.widget.AppBarLayout>

    <com.example.ricardochampa.signatureapp.SignatureView
        android:id="@+id/signature_view"
        android:layout_below="@+id/appBar"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />

    <View
        android:id="@+id/line_view"
        android:layout_width="wrap_content"
        android:layout_height="5dp"
        android:layout_alignParentBottom="true"
        android:layout_centerHorizontal="true"
        android:layout_marginBottom="60dp"
        android:layout_marginStart="70dp"
        android:background="@color/grey"/>

    <TextView
        android:id="@+id/textView2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignTop="@+id/line_view"
        android:layout_centerHorizontal="true"
        android:textColor="@color/grey"
        android:layout_marginTop="10dp"
        android:text="@string/sign_here" />

</RelativeLayout>

并在 activity 中添加(可选)

 Toolbar toolbar = findViewById(R.id.toolbar);
    setSupportActionBar(toolbar);
    if(getSupportActionBar()!=null){
        getSupportActionBar().setDisplayHomeAsUpEnabled(false);
    }

原因是 ToolBarSignatureView 隐藏了。虽然我现在不知道它是如何在 19 岁以上变得可见的。