Answers for "add recyclerview in fragment"

0

add recyclerview in fragment

recyclerView1.apply {
            // set a LinearLayoutManager to handle Android
            // RecyclerView behavior
            layoutManager = LinearLayoutManager(activity)
            // set the custom adapter to the RecyclerView
            val notificationobjects : MutableList<Notification> = mutableListOf<Notification>()
            notificationobjects.add(Notification("Zainab Al Khalifa", "Grade-I"))
             recyclerView1.adapter = NotificationAdapter(notificationobjects)

        }
Posted by: Guest on March-08-2021

Code answers related to "add recyclerview in fragment"

Browse Popular Code Answers by Language