'How to design this type of view in android

How to get this type of layout using StaggeredGridLayoutManager. Or I need to use some other thing?

enter image description here

binding.allHistoryRV.run {
            layoutManager = StaggeredGridLayoutManager(2, StaggeredGridLayoutManager.VERTICAL)
            allHistoryAdapter = AllHistoryAdapter(this@AllHistoryFragment)
            adapter = allHistoryAdapter
        }


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source