gpt4 book ai didi

android - 上下移动 float 操作按钮以避免被 snackbar 挡住

转载 作者:IT老高 更新时间:2023-10-28 21:43:11 26 4
gpt4 key购买 nike

我正在使用 this library实现 float 操作栏,当屏幕上出现 snackbar 时,我似乎找不到移动按钮的方法。那个图书馆甚至有可能吗?

最佳答案

对于任何在未来寻找答案的人..

Coordinator Layout 作为 Floating Action Button 的 Parent Layout 会自动为你处理动画效果。

float 操作按钮有一个默认行为,它会检测到正在添加的 Snackbar View ,并相应地在 Snackbar 的高度上方为按钮设置动画。

Floating Action Button Behavior

<android.support.design.widget.CoordinatorLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/clayout">
<android.support.design.widget.FloatingActionButton
android:id="@+id/fab_btn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|right"
android:layout_marginBottom="16dp"
android:layout_marginRight="16dp"
android:src="@drawable/filter_icon"
app:rippleColor="@color/colorGray"
app:fabSize="normal"
app:borderWidth="0dp"/>
</android.support.design.widget.CoordinatorLayout>

然后我们的 SnackBar 代码将使用 Coordinatorlayout[here layout] 作为父布局,如下所示:

Snackbar.make(clayout, "Click on row to know more details", Snackbar.LENGTH_LONG)
.setAction("OK", new View.OnClickListener() {
@Override
public void onClick(View v) {

}
}).show();

关于android - 上下移动 float 操作按钮以避免被 snackbar 挡住,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27912656/

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