具有相同ActionBar高程的Android视图

时间:2016-04-29 11:05:23

标签: android

我试图让一个视图(LinearLayout)感觉像是ActionBar的扩展。我正在使用AppCompat对象btw。

这是我的xml:

<android.support.design.widget.CoordinatorLayoutt xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true"
    tools:context=".RegisterActivity">

    <android.support.design.widget.AppBarLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:theme="@style/AppTheme.AppBarOverlay.Colored">

        <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            android:background="?attr/colorPrimary"
            app:popupTheme="@style/AppTheme.PopupOverlay" />

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

    <include layout="@layout/content_register" />

</android.support.design.widget.CoordinatorLayout>

现在是content_register布局:

<LinearLayout 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:orientation="vertical"
    app:layout_behavior="@string/appbar_scrolling_view_behavior">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="@color/colorPrimary"
        android:elevation="4dp"
        android:orientation="vertical">

        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:padding="8dp"
            android:text="text1"
            android:textColor="@color/white" />

        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:padding="8dp"
            android:text="text2"
            android:textColor="@color/white" />

        <View
            android:layout_width="match_parent"
            android:layout_height="1dp"
            android:background="#40FFFFFF" />

        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:padding="8dp"
            android:text="text3"
            android:textColor="@color/white" />

    </LinearLayout>


    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="center"
        android:padding="8dp"
        android:text="insert awesome stuff here" />

</LinearLayout>

我想用以下图片表示的内容: Pretended results

这就是我所得到的。 Results so far

关于如何修复此布局的任何想法?我使用了错误的组件吗?

另外,我应该使用CardView作为text1 2 3的布局吗?

2 个答案:

答案 0 :(得分:1)

在样式中添加它(对于pre-Lolipop设备)

<item name="android:windowContentOverlay">@null</item>

在AppBarLayout中添加此行

app:elevation="0dp"

答案 1 :(得分:0)

添加到appbar布局并包含布局app:elevation="4dp",这样它们将处于相同的深度级别,您将看到所包含布局的高程