我正在尝试让我的工具栏在滚动时更改颜色而不会实际折叠它(因此我不希望它的高度发生变化)。我希望它最初是一种颜色,然后滚动时它将变为另一种颜色。当我滚动回到顶部时,它应该变回原来的颜色。
我已经能够改变滚动的颜色,但只能与高度变化相结合。我已经尝试在工具栏,CollapsingToolbarLayout和AppBarLayout上设置minHeight,但遗憾的是没有运气。
我知道我可以手动执行此操作(在滚动更改时为颜色设置动画)但我想排除首先使用设计库执行此操作。
这是我到目前为止所做的:
<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:background="@color/app_secondary_darker">
<android.support.design.widget.AppBarLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/appbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:minHeight="?attr/actionBarSize"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
android:fitsSystemWindows="true">
<android.support.design.widget.CollapsingToolbarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:minHeight="?attr/actionBarSize"
android:fitsSystemWindows="true"
app:contentScrim="@color/white"
app:layout_scrollFlags="scroll">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:minHeight="?attr/actionBarSize"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
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="wrap_content"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<TextView
android:layout_width="match_parent"
android:layout_height="400dp"
android:text="Abc"
android:background="@color/grey_light"/>
<TextView
android:layout_width="match_parent"
android:layout_height="400dp"
android:text="Def"
android:background="@color/red_dark"/>
</LinearLayout>
</android.support.v4.widget.NestedScrollView>
</android.support.design.widget.CoordinatorLayout>
提前致谢!
答案 0 :(得分:0)
希望有所帮助。
app_bar.addOnOffsetChangedListener { appBarLayout, verticalOffset ->
val collapsedPercent = -verticalOffset / appBarLayout.totalScrollRange.toFloat()
//仅在这 0.3的区间里交互 //这个值 在 (0,1]之间,可以自定义
//这里表示仅在收缩到仅剩百分比hotPercent的时候,才进行收缩
val hotPercent = 0.3F
val collapsedHotPercent = MathUtils.clamp(collapsedPercent / hotPercent + 1 - 1 / hotPercent, 0F, 1F)
Log.d(TAG, "onCreate collapsedPercent:" + collapsedPercent)
tabs.apply {
val normalColorStart = ContextCompat.getColor(context, R.color.k6_main_tabs_normal_start)
val normalColorEnd = ContextCompat.getColor(context, R.color.k6_main_tabs_normal_end)
val selectedColorStart = ContextCompat.getColor(context, R.color.k6_main_tabs_selected_start)
val selectedColorEnd = ContextCompat.getColor(context, R.color.k6_main_tabs_selected_end)
val normalColor = ColorUtil.getColorOfDegradate(normalColorStart, normalColorEnd, collapsedHotPercent)
val selectedColor = ColorUtil.getColorOfDegradate(selectedColorStart, selectedColorEnd, collapsedHotPercent)
setTabTextColors(normalColor, selectedColor)
setSelectedTabIndicatorColor(selectedColor)
}
}