内容隐藏在appbar布局下

时间:2016-07-18 14:31:40

标签: android android-appbarlayout android-collapsingtoolbarlayout

在我的应用中,相关内容隐藏在appbarlayout下。我不期待这种行为!

Android 23预览

enter image description here

ANDROID 21 - 在设备上测试

enter image description here

ANDROID 21 - 测试工具栏

下隐藏的设备内容

enter image description here

Altough我的内容按预期向下滚动,当它上升时,内容隐藏在工具栏下。我上传了android 23预览,因为可见实际上工具栏是对齐状态栏后面。如果预览正确,则处理设备内容会移动到应该移动的位置。但工具栏视图位于状态栏后面。我不知道问题出在哪里。

风格

<style name="AppTheme.NoActionBar">
    <item name="windowActionBar">false</item>
    <item name="windowNoTitle">true</item>
    <item name="android:windowDrawsSystemBarBackgrounds">true</item>
    <item name="android:statusBarColor">@color/colorPrimaryDark</item>
</style>

<style name="AppTheme.NoStatusBar" parent="AppTheme.NoActionBar">
    <item name="android:windowTranslucentStatus">true</item>
    <item name="android:windowTranslucentNavigation">true</item>
    <item name="windowActionBarOverlay">true</item>
    <item name="android:windowActionBarOverlay">true</item>
    <item name="android:windowDrawsSystemBarBackgrounds">true</item>
</style>

已更新

好的,我找到了解决方案。它是如此倾倒。只是我的scrollView被滚动下来,因为它的最后一个孩子正在获得焦点 - 回收者视图。 不,我设置了cardView focusableInTouchMode =&#34; true&#34;和假

的最后一个元素
<android.support.v4.widget.NestedScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:layout_behavior="@string/appbar_scrolling_view_behavior"
        android:fitsSystemWindows="true"
        android:fillViewport="true">

 <android.support.v7.widget.CardView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:cardCornerRadius="4dp"
        android:layout_margin="4dp"
        app:contentPaddingTop="24dp"
        android:focusableInTouchMode="true"/>

...
 <android.support.v7.widget.RecyclerView
       android:id="@+id/recycler_view_overbid_history"
       android:layout_width="match_parent"
       android:layout_height="wrap_content"
       android:maxHeight="200dp"
       android:focusable="false"
       android:focusableInTouchMode="false"/>

android.support.v4.widget.NestedScrollView&GT;

1 个答案:

答案 0 :(得分:1)

我正在与您分享我的部分代码,它在我的应用中为我工作:

indirect enum Tr<A> {
    case Lf(A)
    case Br(left: Tr<A>, right: Tr<A>)
}

let leaf1 = Tr.Lf(0)
let leaf2 = Tr.Lf(1)
let branch1 = Tr.Br(left: leaf1, right: leaf2)
let leaf3 = Tr.Lf(2)
let branch2 = Tr.Br(left: leaf3, right: branch1)

V21 / styles.xml:

<android.support.design.widget.CoordinatorLayout 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:fitsSystemWindows="true">

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

    <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="?attr/colorPrimary"
        app:layout_scrollFlags="scroll|exitUntilCollapsed"
        app:expandedTitleMarginBottom="140dp">

        <FrameLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:fitsSystemWindows="true"
            app:layout_collapseMode="parallax"
            app:layout_collapseParallaxMultiplier="0.75">

            <ImageView
                android:id="@+id/store_detail_background"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:scaleType="centerCrop" />

            ...

        </FrameLayout>

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

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

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

<android.support.v4.widget.NestedScrollView
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fillViewport="true"
    app:layout_behavior="@string/appbar_scrolling_view_behavior">

    <FrameLayout
        android:id="@+id/container"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />

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