MainActivity.kt
package com.cfsuman.kotlintutorials
import android.app.Activity
import android.graphics.Color
import android.graphics.Typeface
import android.os.Bundle
import android.widget.*
class MainActivity : Activity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)
// get the widgets reference from XML layout
val listView = findViewById<ListView>(R.id.listView)
val textView = findViewById<TextView>(R.id.textView)
// list to populate list view
val list = mutableListOf(
"Celadon blue",
"Alloy orange",
"Amaranth pink",
"Apple green",
"Cameo pink",
"Black chocolate"
)
// initialize an array adapter
val adapter:ArrayAdapter<String> = ArrayAdapter(
this,
android.R.layout.simple_dropdown_item_1line,list
)
// attach the array adapter with list view
listView.adapter = adapter
// list view item click listener
listView.onItemClickListener = AdapterView.OnItemClickListener {
parent, view, position, id ->
val selectedItem = parent.getItemAtPosition(position)
textView.text = "Selected : $selectedItem"
}
// get the layout for list view header view
val header:TextView = layoutInflater.inflate(
android.R.layout.simple_dropdown_item_1line,
listView,
false
) as TextView
// set text for header view
header.text = "List of colors."
// make header text bold
header.setTypeface(header.typeface, Typeface.BOLD)
// give a background color to header
header.setBackgroundColor(Color.parseColor("#A1CAF1"))
// set header text color
header.setTextColor(Color.parseColor("#1B1811"))
// finally, add the header view to list view
listView.addHeaderView(
header,
null,
false // make it not selectable/clickable
)
}
}
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"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/rootLayout"
android:background="#DCDCDC"
android:padding="24dp">
<ListView
android:id="@+id/listView"
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_marginBottom="24dp"
app:layout_constraintBottom_toTopOf="@+id/textView"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<TextView
android:id="@+id/textView"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:text="Select your favorite color"
android:fontFamily="sans-serif"
android:gravity="center"
android:textColor="#333399"
android:textSize="24sp"
android:textStyle="italic"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>

- android kotlin - Popup menu example
- android kotlin - Menu item text color
- android kotlin - CalendarView set minDate maxdate
- android kotlin - Toolbar menu example
- android kotlin - Toolbar back button color
- android kotlin - Toolbar center align title
- android kotlin - Secondary progress bar example
- android kotlin - Circular progress bar example
- android kotlin - Custom horizontal progress bar
- android kotlin - Progressbar with percentage example
- android kotlin - Change ProgressBar color programmatically
- android kotlin - ListView remove divider line example
- android kotlin - ListView remove item programmatically
- android kotlin - ListView add item programmatically
- android kotlin - ListView OnItemClickListener example