如何使工具栏在片段上重叠

时间:2016-06-23 07:19:19

标签: android android-layout android-fragments android-toolbar

我在我的片段上添加了工具栏:

myFragmentXml

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:animateLayoutChanges="true">



<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">
<android.support.v7.widget.Toolbar
    android:layout_height="wrap_content"
    android:layout_width="match_parent"
    android:minHeight="?attr/actionBarSize"
    android:id="@+id/toolbar"
    app:theme="@style/ToolBarStyle" />

<android.support.v4.widget.SwipeRefreshLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/swipe_refresh_layout"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:foregroundGravity="left|right">




    <android.support.v7.widget.RecyclerView

        android:id="@+id/notesList"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:layout_behavior="@string/appbar_scrolling_view_behavior"

        >

    </android.support.v7.widget.RecyclerView>




</android.support.v4.widget.SwipeRefreshLayout>

</LinearLayout>

我正在尝试在我的工具栏上添加淡入和淡出效果,可以通过scrollView触发,请参阅this以便更好地理解

但我的工具栏位于片段顶部(不覆盖片段)

这里我的工具栏的alpha是0(透明),但我希望图像被工具栏覆盖,但现在它的工具栏下面

image1

0 个答案:

没有答案