我想在我的Notes应用中增加一个删除项目后的UNDO功能。我在android ItemTouchHelper onSwiped方法中添加了一个Snackbar,在这个方法中我删除了单个笔记。我面临的问题是,Snackbar滑动动画会导致浮动操作按钮在动画开始时再次上下跳动。我在Github论坛上找到了这个问题的描述。Github 和 动画片 遗憾的是问题没有得到解决。
我的活动_主
<?xml version="1.0" encoding="utf-8"?>
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:tools="http://schemas.android.com/tools"
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity"
android:id="@+id/coordinatorLayout">
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recycle_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:listitem="@layout/note_item" />
<com.google.android.material.floatingactionbutton.FloatingActionButton
android:id="@+id/button_add_note"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|end"
android:elevation="4dp"
android:layout_margin="32dp"
android:src="@drawable/ic_add" />
</androidx.coordinatorlayout.widget.CoordinatorLayout>
擦拭时
public void onSwiped(@NonNull RecyclerView.ViewHolder viewHolder, int direction) {
CoordinatorLayout coordinatorLayout = findViewById(R.id.coordinatorLayout);
Note deletedNote = adapter.getNoteAt(viewHolder.getAdapterPosition());
noteViewModel.delete(deletedNote);
Snackbar snackbar = Snackbar.make(coordinatorLayout, "Note deleted", Snackbar.LENGTH_LONG)
.setAction("UNDO", new View.OnClickListener() {
@Override
public void onClick(View v) {
noteViewModel.insert(deletedNote);
}
});
snackbar.show();
}
}).attachToRecyclerView(recyclerView);
这似乎是一个bug 材料-部件你可以通过使用旧版本的库(1.1.0-alpha10)来解决这个问题,或者放弃滑动动画,而使用渐变动画,如下所示
<style name="MySnackbarStyle" parent="Widget.Design.Snackbar">
<item name="animationMode">fade</item>
</style>
并将以下内容添加到你的活动主题中。
<item name="snackbarStyle">@style/MySnackbarStyle</item>