android kotlin - plusAssign and minusAssign example

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 btnList = findViewById<Button>(R.id.btnList)
        val btnPlusAssign = findViewById<Button>(R.id.btnPlusAssign)
        val btnMinusAssign = findViewById<Button>(R.id.btnMinusAssign)

        // make textview content scrollable
        textView.movementMethod = ScrollingMovementMethod()


        btnList.setOnClickListener {
            // Create a list with values
            val list = mutableListOf("RED","GREEN","BLACK",
                "YELLOW","WHITE","BLUE")
            textView.text = "Colors:\n"

            // Iterate through the list
            list.forEachIndexed { index, color ->
                textView.append("\n${index+1}. $color")
            }
        }


        btnPlusAssign.setOnClickListener {
            // Create a list with values
            val list = mutableListOf("RED","GREEN","BLACK",
                "YELLOW","WHITE","BLUE")

            // Create another list of colors
            val listToAdd = listOf("PINK","MAGENTA","ORANGE")

            // Iterate through the second list
            textView.text = "Elements to add:\n"
            listToAdd.forEachIndexed { index, color ->
                textView.append("\n${index+1}. $color")
            }

            // Add the second list elements to first list
            list.plusAssign(listToAdd)

            textView.append("\n\nAfter adding second" +
                    " list to first list:\n")
            // Iterate through the first list
            list.forEachIndexed { index, color ->
                textView.append("\n${index+1}. $color")
            }
        }


        btnMinusAssign.setOnClickListener {
            // Create a list with values
            val list = mutableListOf("RED","GREEN","BLACK",
                "YELLOW","WHITE","BLUE")

            // Create another list of colors
            val listToRemove = listOf("GREEN","MAGENTA","YELLOW")

            // Iterate through the second list
            textView.text = "Elements to minus:\n"
            listToRemove.forEachIndexed { index, color ->
                textView.append("\n${index+1}. $color")
            }

            // Remove the second list elements from first list
            list.minusAssign(listToRemove)

            textView.append("\n\nAfter removing second list" +
                    " elements from first list:\n")
            // Iterate through the first list
            list.forEachIndexed { index, color ->
                textView.append("\n${index+1}. $color")
            }
        }
    }
}
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="12dp">

    <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/btnPlusAssign"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginStart="8dp"
        android:text="plusAssign"
        android:textAllCaps="false"
        app:layout_constraintBottom_toBottomOf="@+id/btnList"
        app:layout_constraintStart_toEndOf="@+id/btnList" />

    <Button
        android:id="@+id/btnMinusAssign"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginStart="8dp"
        android:text="minusAssign"
        android:textAllCaps="false"
        app:layout_constraintBottom_toBottomOf="@+id/btnPlusAssign"
        app:layout_constraintStart_toEndOf="@+id/btnPlusAssign" />

    <TextView
        android:id="@+id/textView"
        android:layout_width="0dp"
        android:layout_height="0dp"
        android:layout_marginTop="16dp"
        android:fontFamily="sans-serif"
        android:textSize="22sp"
        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>

android kotlin - removeAll and retainAll example

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 btnList = findViewById<Button>(R.id.btnList)
        val btnRemoveAll = findViewById<Button>(R.id.btnRemoveAll)
        val btnRetainAll = findViewById<Button>(R.id.btnRetainAll)

        // make textview content scrollable
        textView.movementMethod = ScrollingMovementMethod()


        btnList.setOnClickListener {
            // Create a list with values
            val list = mutableListOf("RED","GREEN","BLACK",
                "YELLOW","WHITE","BLUE")
            textView.text = "Colors:\n"

            // Iterate through the list
            list.forEachIndexed { index, color ->
                textView.append("\n${index+1}. $color")
            }
        }


        btnRemoveAll.setOnClickListener {
            // Create a list with values
            val list = mutableListOf("RED","GREEN","BLACK",
                "YELLOW","WHITE","BLUE")

            // Remove elements which name stars with 'B'
            list.removeAll{ it.startsWith("B") }

            textView.text = "Remove all colors," +
                    " name starts with 'B'\n"

            // Iterate through the list
            list.forEachIndexed { index, color ->
                textView.append("\n${index+1}. $color")
            }
        }


        btnRetainAll.setOnClickListener {
            // Create a list with values
            val list = mutableListOf("RED","GREEN","BLACK",
                "YELLOW","WHITE","BLUE")

            // Retain only elements with name ends with 'E'
            list.retainAll{it.endsWith("E")}

            textView.text = "Retain all colors," +
                    " name ends with 'E'\n"

            // Iterate through the list
            list.forEachIndexed { index, color ->
                textView.append("\n${index+1}. $color")
            }
        }
    }
}
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/btnRemoveAll"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginStart="8dp"
        android:text="removeAll"
        android:textAllCaps="false"
        app:layout_constraintBottom_toBottomOf="@+id/btnList"
        app:layout_constraintStart_toEndOf="@+id/btnList" />

    <Button
        android:id="@+id/btnRetainAll"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginStart="8dp"
        android:text="retainAll"
        android:textAllCaps="false"
        app:layout_constraintBottom_toBottomOf="@+id/btnRemoveAll"
        app:layout_constraintStart_toEndOf="@+id/btnRemoveAll" />

    <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>

android kotlin - getOrElse and getOrNull example

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 btnList = findViewById<Button>(R.id.btnList)
        val btnGetOrNull = findViewById<Button>(R.id.btnGetOrNull)
        val btnGetOrElse = findViewById<Button>(R.id.btnGetOrElse)

        // make textview content scrollable
        textView.movementMethod = ScrollingMovementMethod()


        // Create a list with values
        val list = mutableListOf("RED","GREEN","YELLOW","WHITE")

        btnList.setOnClickListener {
            textView.text = "Colors:\n"

            // Iterate through the list
            list.forEachIndexed { index, color ->
                textView.append("\n${index}. $color")
            }
        }

        btnGetOrElse.setOnClickListener {
            // get the color from index 5 or default value
            // if index is out of range, it returns
            // value from lambda expression
            val atIndex5 = list.getOrElse(
                5
            ) // index
            { list.first() } // default value

            textView.text = "Element at index 5 or default value"
            textView.append("\n\n$atIndex5")
        }


        btnGetOrNull.setOnClickListener {
            // get the color from index 5 or null
            // if the index is out of range then it returns null
            val atIndex4 = list.getOrNull(4)

            textView.text = "Element at index 4 or default value"
            textView.append("\n\n$atIndex4")
        }
    }
}
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/btnGetOrNull"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginStart="8dp"
        android:text="getOrNull"
        android:textAllCaps="false"
        app:layout_constraintBottom_toBottomOf="@+id/btnList"
        app:layout_constraintStart_toEndOf="@+id/btnList" />

    <Button
        android:id="@+id/btnGetOrElse"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginStart="8dp"
        android:text="getOrElse"
        android:textAllCaps="false"
        app:layout_constraintBottom_toBottomOf="@+id/btnGetOrNull"
        app:layout_constraintStart_toEndOf="@+id/btnGetOrNull" />

    <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>