Last active
August 29, 2024 12:37
-
-
Save costular/45fc8035f866e9df3b6ba7e77def7ec9 to your computer and use it in GitHub Desktop.
Bottom sheet menu with recyclerview faster thanks to Kotlin
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fun showMenu() { | |
val items = arrayListOf( | |
BottomMenuItem(R.drawable.ic_document_automatic, "Edit", { | |
// edit action | |
}), | |
BottomMenuItem(R.drawable.ic_document_manual, "Delete", { | |
// delete action | |
}) | |
) | |
BottomSheetMenu(activity, items) | |
.show() | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Define globally in Your Adapter :
Inside onBindViewHolder add below code
Then in your MainActivity call your onItemClick