Android - FAB 的位置怎么实现

发布于 2022-09-01 23:05:39 字数 183 浏览 19 评论 0

图片描述

这种Floating Action Button 的位置感觉在两个 ViewGroup之间,怎么实现?谢谢~

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

2022-09-08 23:05:39
<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"
        android:src="@drawable/ic_add_black_24dp"
        custom:layout_anchor="@id/app_bar"
        custom:layout_anchorGravity="bottom|left"/>
        

where custom refers to xmlns http://schemas.android.com/apk/res-auto, and app_bar is a android.support.design.widget.AppBarLayout.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文