Answers for "how to add button in recyclerview fragment in kotlin"

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 "how to add button in recyclerview fragment in kotlin"

Browse Popular Code Answers by Language