gpt4 book ai didi

android - CoordinatorLayout 底部的工具栏

转载 作者:行者123 更新时间:2023-11-29 17:19:14 27 4
gpt4 key购买 nike

我想用 RecyclerView 和 Toolbar 创建简单的 CoordinatorLayout,但与标准解决方案的区别在于 Toolbar 应该在底部,并且当 RecyclerView 滚动到底部时应该消失。

所以我创建了简单的布局:

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout
android:id="@+id/main_content"
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">

<android.support.v7.widget.Toolbar
android:id="@+id/toolbar_bottom"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>

<android.support.v7.widget.RecyclerView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/recycler_view"/>

</android.support.design.widget.CoordinatorLayout>

当然工具栏在顶部而不是在底部。我该如何解决?

最佳答案

哇,这是个好主意,虽然不确定,但你可以尝试这样做

<android.support.design.widget.CoordinatorLayout
android:id="@+id/main_content"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">

<android.support.v7.widget.RecyclerView
android:id="@+id/my_list"
android:layout_width="match_parent"
android:layout_height="match_parent">
</android.support.v7.widget.RecyclerView>

<android.support.v7.widget.Toolbar
android:id="@+id/toolbar_bottom"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom"/>
</android.support.design.widget.CoordinatorLayout>

但老实说,我认为这还不够。

也许解决方案是为 Toolbar 提供自定义 app:layout_behavior,就像我在 my blog article 中对 FAB 所做的那样。 .

请告诉我结果如何!

编辑

我刚刚意识到,也许您正在寻找的是新引入的 bottom navigation bar !我看到有很多第三方库可以开箱即用或者尝试自己实现它!

关于android - CoordinatorLayout 底部的工具栏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37226862/

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