Answers for "recycler view with fragments kotlin"

0

recyclerview linearlayoutmanager kotlin

// Initialize a new linear layout manager
        var linearLayoutManager: LinearLayoutManager = LinearLayoutManager(
            activity?.applicationContext, // Context
            LinearLayout.VERTICAL, // Orientation
            false // Reverse layout
        )

        list.layoutManager = linearLayoutManager
Posted by: Guest on August-04-2020

Browse Popular Code Answers by Language