Two Toolbars, Only the second one should collapse on scroll in CoordinatorLayout(两个工具栏,只有第二个工具栏应该在坐标布局中滚动时折叠)
本文介绍了两个工具栏,只有第二个工具栏应该在坐标布局中滚动时折叠的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我在一个协调员布局中有以下代码。这段代码的主要作用是将两个工具栏放在彼此的顶部See Image Here。我计划实现的是,当用户向下滚动时,只有第二个工具栏折叠。
<android.support.design.widget.AppBarLayout
android:id="@+id/toolbar_home_appBarLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<android.support.v7.widget.Toolbar
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:id="@+id/toolbar"
android:background="?attr/colorPrimary"
app:theme = "@style/ThemeOverlay.AppCompat.Dark.ActionBar">
</android.support.v7.widget.Toolbar>
<android.support.v7.widget.Toolbar
app:layout_scrollFlags="scroll|enterAlways|snap"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/toolbar_filters"
android:background="@color/colorAccent"
>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<Button
android:layout_width="0dp"
android:layout_weight="1"
android:text="@string/category"
android:textSize="12dp"
style="@style/FlatButton"
android:id="@+id/toolbar_category_btn"
android:textColor="@android:color/white"
android:layout_height="wrap_content" />
<Button
android:layout_width="0dp"
android:layout_weight="1"
android:text="@string/filter"
android:id="@+id/toolbar_filter_btn"
android:textSize="12dp"
android:textColor="@android:color/white"
style="@style/FlatButton"
android:layout_height="wrap_content" />
</LinearLayout>
</android.support.v7.widget.Toolbar>
</android.support.design.widget.AppBarLayout>
推荐答案
您可以使用收拢工具栏布局来实现这一点。当你想要在滚动上折叠任何视图时,它是他们发布的材料设计UI组件之一。点击下面的链接了解它的工作原理,
https://www.journaldev.com/13927/android-collapsingtoolbarlayout-example
在示例中使用工具栏而不是Imageview。
这篇关于两个工具栏,只有第二个工具栏应该在坐标布局中滚动时折叠的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
沃梦达教程
本文标题为:两个工具栏,只有第二个工具栏应该在坐标布局中滚动时折叠
基础教程推荐
猜你喜欢
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01