gpt4 book ai didi

java - 如何在垂直 ScrollView 上使用 float 按钮?

转载 作者:行者123 更新时间:2023-12-02 03:17:38 24 4
gpt4 key购买 nike

Gmail Android 应用程序 float 按钮

我想在 Android 的 ScrollView 上添加一个 float 按钮。这样,即使我滚动布局,按钮在这种情况下也应保持在给定位置(右下角)不变。就像 Gmail Android 移动应用程序一样,它们的右下角有一个完整的发送邮件按钮,并且背景是可滚动的。

enter image description here

最佳答案

如果将按钮放在布局顶部而不是放在回收器 View 中,则滚动时它不会移动。

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
android:layout_width="match_parent" android:layout_height="match_parent">



<androidx.recyclerview.widget.RecyclerView
android:layout_width="match_parent"
android:layout_height="match_parent" />

<com.google.android.material.floatingactionbutton.FloatingActionButton
android:id="@+id/floatingActionButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginEnd="8dp"
android:layout_marginBottom="8dp"
android:clickable="true"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:srcCompat="@android:drawable/ic_input_add" />
</androidx.constraintlayout.widget.ConstraintLayout>

关于java - 如何在垂直 ScrollView 上使用 float 按钮?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56951487/

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