占据整个屏幕的BottomSheet触摸区域

时间:2016-05-09 09:46:10

标签: android bottom-sheet

我已经添加了一张底页和我的视图并且它正常工作但是我可以拖动工作表的触摸区域占据了整个屏幕。 视图代码看起来像这样

<android.support.design.widget.AppBarLayout
    android:id="@+id/app_bar"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true"
    android:transitionName="@string/transition_image">

    <android.support.design.widget.CollapsingToolbarLayout
        android:id="@+id/collapsing_toolbar"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:fitsSystemWindows="true"
        app:contentScrim="@color/color_primary"
        app:expandedTitleMarginEnd="64dp"
        app:expandedTitleMarginStart="48dp">

        <com.oxzimo.fabric.ui.DetailsImageView
            android:id="@+id/backdrop"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:fitsSystemWindows="true"
            android:scaleType="centerCrop"
            app:layout_collapseMode="parallax" />

        <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            app:layout_collapseMode="pin"
            app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />

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

<FrameLayout
    android:id="@+id/bottom_sheet"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="#fff"
    android:elevation="6dp"
    app:behavior_peekHeight="56dp"
    app:layout_behavior="@string/bottom_sheet_behavior">

    <include layout="@layout/item_detail" />
</FrameLayout>

<android.support.design.widget.FloatingActionButton
    android:id="@+id/fab"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_margin="@dimen/fab_margin"
    android:clickable="true"
    android:visibility="gone"
    android:elevation="10dp"
    android:src="@drawable/ic_wallpaper_white_24dp"
    android:contentDescription="@string/content_desc_set_wallpaper"
    app:layout_anchor="@id/bottom_sheet"
    app:layout_anchorGravity="top|right|end" />
</android.support.design.widget.CoordinatorLayout>

我想知道为什么会出现这种行为,如何才能使触摸区域包括底页。

0 个答案:

没有答案