MainActivity.kt
package com.cfsuman.kotlintutorials
import android.os.Bundle
import android.text.method.ScrollingMovementMethod
import android.widget.Button
import android.widget.TextView
import androidx.appcompat.app.AppCompatActivity
import java.util.*
class MainActivity : AppCompatActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)
// get the widgets reference from XML layout
val textView = findViewById<TextView>(R.id.textView)
val btnList = findViewById<Button>(R.id.btnList)
val btnSimple = findViewById<Button>(R.id.btnSimple)
val btnJoinToString = findViewById<Button>(
R.id.btnJoinToString)
// make textview content scrollable
textView.movementMethod = ScrollingMovementMethod()
// Create a list with values
val list = listOf("RED","GREEN","YELLOW",
"MAGENTA","PINK","WHITE")
btnList.setOnClickListener {
textView.text = "List:\n"
// Iterate through the list
list.forEach {
textView.append("\n$it")
}
}
btnSimple.setOnClickListener {
// Simply join the list elements to a string
val joinedString = list.joinToString {
it.lowercase(Locale.ROOT)
}
textView.text = "$joinedString"
}
btnJoinToString.setOnClickListener {
// Join list elements to string in more formatted way
val convertedString = list.joinToString(
" | ", // separator
"[", // prefix
"]", // postfix
4, // limit
"..." // truncated
){
it.lowercase(Locale.ROOT)
}
textView.text = "$convertedString"
}
}
}
activity_main.xml
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#F8F8F8"
android:padding="24dp">
<Button
android:id="@+id/btnList"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="List"
android:textAllCaps="false"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<Button
android:id="@+id/btnSimple"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="8dp"
android:text="Simple"
android:textAllCaps="false"
app:layout_constraintBottom_toBottomOf="@+id/btnList"
app:layout_constraintStart_toEndOf="@+id/btnList" />
<Button
android:id="@+id/btnJoinToString"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="8dp"
android:text="joinToString"
android:textAllCaps="false"
app:layout_constraintBottom_toBottomOf="@+id/btnSimple"
app:layout_constraintStart_toEndOf="@+id/btnSimple" />
<TextView
android:id="@+id/textView"
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_marginTop="16dp"
android:fontFamily="sans-serif"
android:textSize="24sp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/btnList" />
</androidx.constraintlayout.widget.ConstraintLayout>
![](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiHLve-_wmvl8ZLV0LHgmjiHUCKu3eHP-cdrni2dV8odt_Y2MGg_xKqy26DDrmYCe1odIqIQxQj51u581CbzrqCAVGgY1pzr6QLpvqtbRCgScYnwvd9f3GZ84aeIKSQDd5yM2aGpH9uPpRRycd1x0sfTeX5E43oVXSZ68zuXBMjhBS1ycW6VtE_AGAMbA/s1600/android_kotlin_list_jointostring_example.png)
![](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgxAG8kw_0P273K5s1JAtNnm-KLN0sH8Yd7Mb9EnKJq0-DGAsn53tc_GSbaeXA_Ka8mh7H8mNEdFk_plYEobjD-KI_kWsI5ceimqRPxlvuKuCUqT0ACqr_6NTZRqY_o_w7on-5mK-WD5El7LawY6vm4xZYKDSju6XTKT8-yIETxM2mlFHwl2e9cqYr_fg/s1600/android_kotlin_list_jointostring_example2.png)
![](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhKjkC53iaBbSj_IEojmPVgenIOG28yKpiT3d9KjK7jWTBASEVCfQ42J8uW8RrpMTcyK0SBHeIwgdyqXdrTyuNdum3doXxMSgdupV-ngDuDYEe_5ynWqw8lIhfsYDGM57MbmC4uM0pO_uXLoZaebGtbUObGjkVlWcOFsDo6PeYkcWP594H2Z_-m5bp8fQ/s1600/android_kotlin_list_jointostring_example3.png)