gpt4 book ai didi

android - 支持库 26 CoordinatorLayout

转载 作者:太空狗 更新时间:2023-10-29 14:41:38 26 4
gpt4 key购买 nike

我在使用新的支持库 26.1.0 时遇到了问题,27.0.0 也出现了同样的问题,但是 25.x.x 似乎一切正常。

它是来自 Android studio 示例 Scrolling Activity 的示例应用。

太可怕了!!

https://imgur.com/a/x5xV7

我制作了一个视频,展示了快速滚动的行为,snap scroll flag 看起来完全坏了,我也不知道状态栏是怎么回事,好像有一个叠加层被绘制了下来猛击(捂脸)的力量。

说真的 Google,每次更新都会破坏支持库。一旦支持库发生变化,我真的厌倦了更新和照顾整个应用程序。太荒谬了,你们是开发人员应该信任和依赖的人,但现在似乎不再是这样了,因为你们总是用 GUI 破坏一切,完全浪费了开发人员的时间。

v21下需要在主题中添加这个:

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

XML View

<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" />

最佳答案

我遇到了同样的问题,并且通过从 layout_scrollFlags 中删除 snap 至少设法减轻了这种奇怪的行为:

<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">

但是,您可能会猜到,您会丢失快照。

关于android - 支持库 26 CoordinatorLayout,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47097664/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com