The text color isn't working in the last version 1.4, please, check. #26
ronaldoguedess
started this conversation in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
The text color isn't working in the last version 1.4, please, check.
override fun onChildDraw(c: Canvas, recyclerView: RecyclerView, viewHolder: RecyclerView.ViewHolder, dX: Float, dY: Float, actionState: Int, isCurrentlyActive: Boolean) { RecyclerViewSwipeDecorator.Builder(c,recyclerView,viewHolder,dX,dY,actionState,isCurrentlyActive) .addBackgroundColor(ContextCompat.getColor(this@MainActivity,R.color.red)) .addActionIcon(R.drawable.ic_baseline_delete_24) .addSwipeLeftLabel("REMOVE") .setSwipeLeftLabelColor(R.color.white) .setSwipeRightLabelColor(R.color.white) .addSwipeLeftCornerRadius(3, 3F) .create() .decorate() super.onChildDraw(c,recyclerView,viewHolder,dX,dY,actionState,isCurrentlyActive) }
Beta Was this translation helpful? Give feedback.
All reactions