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
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 button = findViewById<Button>(R.id.button)
// make textview content scrollable
textView.movementMethod = ScrollingMovementMethod()
button.setOnClickListener {
// disable the button itself
it.isEnabled = false
val list = mutableListOf<String>()
// Add items to the list
list.add("Red")
list.add("Green")
list.add("Yellow")
list.add("Pink")
// Loop through the list
textView.text = "mutableListOf<String>()"
list.forEach{
textView.append("\n$it")
}
val list2:MutableList<Any> = mutableListOf("White",100)
list2.add(250.75F)
list2.add("Magenta")
list2.add("Black")
// Iterate through the second list
textView.append("\n\nmutableListOf<Any>()")
list2.forEach {
textView.append("\n$it")
}
}
}
}
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/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="List Add Item"
android:textAllCaps="false"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<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/button" />
</androidx.constraintlayout.widget.ConstraintLayout>

- kotlin - Notification progress bar percentage
- kotlin - PreferenceFragmentCompat
- kotlin syntax - ArrayList
- kotlin syntax - List filter
- kotlin syntax - take, takeLast, takeWhile, takeLastWhile
- kotlin syntax - Difference between takeWhile and filter
- kotlin syntax - List sort by multiple fields
- kotlin syntax - Sort list using comparator
- kotlin syntax - removeAll and retainAll
- kotlin syntax - plusAssign and minusAssign