2

私は新しいサポートライブラリ26.1.0に問題がありました。同じクラップが27.0.0で起こっていますが、すべてが25.x.xでうまくいくようです。サポートライブラリ26 CoordinatorLayout

Androidスタジオサンプルのスクロールアクティビティのサンプルアプリです。

HORRIBLE !!

https://imgur.com/a/x5xV7

私は情事の動作を行うためのビデオを作った、とスナップスクロールフラグが完全に壊れて見え、また、私は、ステータスバーで起こっていただきました!知っていないがあるように、それはそうですオーバーレイは飛行機の力(facepalm)によって引き込まれる。

真剣にGoogle、あなたはすべてのアップデートでサポートライブラリを台無しにする。私は本当にアップデートに疲れていて、サポートライブラリが変更されたらアプリ全体を見ている。それはとてもばかげている、あなたは開発者が信頼して頼ってくれる人ですが、開発者の時間を無駄にするGUIがあるため、常に時間を浪費しているので、もうそうではないようです。私は同じ問題があったが、少なくともその奇妙を軽減するために管理

<android.support.design.widget.AppBarLayout 
    android:id="@+id/app_bar" 
    android:layout_width="match_parent" 
    android:layout_height="@dimen/app_bar_height" 
    android:fitsSystemWindows="true" 
    android:theme="@style/AppTheme.AppBarOverlay"> 

    <android.support.design.widget.CollapsingToolbarLayout 
     android:id="@+id/toolbar_layout" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     android:fitsSystemWindows="true" 
     app:contentScrim="?attr/colorPrimary" 
     app:layout_scrollFlags="scroll|exitUntilCollapsed|snap"> 

     <ImageView 
      android:id="@+id/ivImage" 
      android:layout_width="match_parent" 
      android:layout_height="match_parent" 
      android:fitsSystemWindows="true" 
      android:scaleType="centerCrop" 
      android:src="@drawable/img1" 
      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:layout_scrollFlags="scroll|enterAlways|snap" 
      app:popupTheme="@style/AppTheme.PopupOverlay" /> 

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

    <TextView 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_margin="@dimen/text_margin" 
     android:text="@string/large_text" /> 

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

<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" 
    app:layout_anchor="@id/app_bar" 
    app:layout_anchorGravity="bottom|end" 
    app:srcCompat="@android:drawable/ic_dialog_email" /> 

+0

サポートライブラリ/ googleについて質問がありますか? – Selvin

+0

もちろん、25.x.xサポートlibに戻らずに、この厄介なバグを修正する方法についての質問です! – box

+0

私には同じ問題があります:((@boxは回避策を見つけましたか?25.x.x – nAkhmedov

答えて

0

<item name="android:statusBarColor">@android:color/transparent</item> 

XMLビュー:

これはV21の下で、テーマに追加する必要がありますスナップをlayout_scrollFlagsから削除するだけで動作します。

<android.support.design.widget.CollapsingToolbarLayout 
    android:id="@+id/toolbar_layout" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:fitsSystemWindows="true" 
    app:contentScrim="?attr/colorPrimary" 
    app:layout_scrollFlags="scroll|exitUntilCollapsed|snap"> 

しかし、あなたが推測しているようにスナップを失います。

関連する問題