Answers for "recyclerview kotlin button"

0

how to add button in recyclerview fragment in kotlin

holder.accept.setOnClickListener {

            if (context != null) {
                context.supportFragmentManager
                    .beginTransaction()
                    .replace(R.id.schoolcontainer, DetailSchoolFragment.newInstance())
                    .commit()
            }

        }
Posted by: Guest on March-23-2021

Code answers related to "recyclerview kotlin button"

Browse Popular Code Answers by Language