swipe-controller-demo
swipe-controller-demo copied to clipboard
not working for androidx
Hi,
I have updated from android.support.v7 to androidx. but I lost to swipe movement. not working.
I do not know if you have already solved it but check if it has the following imports and if necessary replace them, that should solve the problem, the rest stays the same:
import android.graphics.Canvas; import android.graphics.Color; import android.graphics.Paint; import android.graphics.RectF; import android.view.MotionEvent; import android.view.View; import androidx.annotation.NonNull; import androidx.recyclerview.widget.ItemTouchHelper; import androidx.recyclerview.widget.RecyclerView; import static androidx.recyclerview.widget.ItemTouchHelper.ACTION_STATE_SWIPE; import static androidx.recyclerview.widget.ItemTouchHelper.LEFT; import static androidx.recyclerview.widget.ItemTouchHelper.RIGHT;
I migrated the demo project to androidX, can confirm that it works.