I tried using recycler view but it is giving me some error
Can i use scrollView Instead ,are they same? How can I initialize and use a RecyclerView in Kotlin for an Android app? I'm new to Kotlin and struggling with setting up a RecyclerView to display a list of items. I need a basic example or guidance on how to start. Any help?
Efficient Recycling of Views: The primary advantage of RecyclerView is its ability to recycle views as you scroll through the list. This means it reuses view holders for new items that become visible, significantly reducing memory consumption and improving performance, especially for large or complex lists. ScrollView, on the other hand, does not recycle views; it simply scrolls through the content, which can lead to performance issues for large datasets. Yes,i have providedsome sample to help ,refer to this:
#ON NEXT PAGE val getans:ArrayList?=intent.getStringArrayListExtra("ans") val answersText = getans?.joinToString(separator = "\n") ?: "No answers provided" val score=intent.getIntExtra("score",0)
https://pastebin.com/0Mf3VTx4