布局视图始终保持结束

时间:2015-07-01 08:50:40

标签: android android-fragments toolbar

我在棒棒糖和棒棒糖面临一些麻烦实现工具栏时的棒棒糖前设备。阴影没有显示,所以我发现获取阴影的最常用方法是添加带渐变的视图。

这是我的布局:

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

    <LinearLayout
        android:id="@+id/container_toolbar"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical">

        <include
            android:id="@+id/toolbar"
            layout="@layout/toolbar" />
    </LinearLayout>

    <FrameLayout
        android:id="@+id/container_body"
        android:layout_width="fill_parent"
        android:layout_height="0dp"
        android:layout_weight="1" >

        <View
            android:layout_width="match_parent"
            android:layout_height="5dp"
            android:background="@drawable/toolbar_dropshadow" />
    </FrameLayout>
</LinearLayout>

toolbar_dropshadow的位置是:

<shape
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">
    <gradient
        android:startColor="@android:color/transparent"
        android:endColor="#88333333"
        android:angle="90"/>
</shape>

这种方式在大多数情况下很好地显示了shafow,但是很少有阴影被隐藏的情况。在1个片段中,我在工具栏的下方有一个Map(Googlemap),所以当它更新时,阴影消失了。此外,在其他片段中,我在工具栏正下方有一个图像视图,当图像被加载时,阴影消失。

那么,有没有一种方法可以让阴影视图始终位于顶部,即使片段已经过编程更新?

1 个答案:

答案 0 :(得分:0)

尝试使用RelativeLayout,以便工具栏绘制在层次结构

中的其他视图上方
<?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">

    <FrameLayout
        android:id="@+id/container_body"
        android:layout_width="fill_parent"
        android:layout_height="match_parent"
        android:layout_below="@+id/container_toolbar"
        android:layout_weight="1">

        <View
            android:layout_width="match_parent"
            android:layout_height="5dp"
            android:background="@drawable/toolbar_dropshadow" />
    </FrameLayout>

    <LinearLayout
        android:id="@+id/container_toolbar"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical">

        <include
            android:id="@+id/toolbar"
            layout="@layout/toolbar" />
    </LinearLayout>
</RelativeLayout>