새 지원 라이브러리 26.1.0에 문제가 있었지만 같은 쓰레기가 27.0.0에서 발생했지만 모든 것이 25.x.x로 확인되었습니다.지원 라이브러리 26 CoordinatorLayout
안드로이드 스튜디오 샘플의 샘플 응용 프로그램 인 Scrolling Activity.
HORRIBLE !!
은 그냥 날뛰는 행동을하는 비디오를 만들었하고, 스냅 스크롤 플래그는 상태 표시 줄에 진행, 보인다 무슨 일이처럼도 나도 몰라, 완전히 깨진 보인다 오버레이는 fling (페이스 팔)의 힘에 의해 끌어 당겨진다.
심각하게 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" />
여기에 어떤 질문이 있습니까, 아니면 support library/google에 대해 궁금한 점이 있습니까? – Selvin
물론 25.x.x를 지원하는 lib로 돌아 가지 않고이 고약한 버그를 고치는 방법에 대한 질문을 던집니다! – box
저와 같은 문제 : (((@box는 해결 방법을 찾았습니까? 25.x.x – nAkhmedov