MainActivity.kt
package com.cfsuman.kotlintutorials
import android.app.Activity
import android.os.Bundle
import android.text.Editable
import android.text.TextWatcher
import android.widget.EditText
class MainActivity : Activity() {
private lateinit var editText:EditText
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)
// get the widgets reference from XML layout
editText = findViewById(R.id.editText)
// set hint for edit text
editText.hint = "City name?"
// add text changed listener on edit text
editText.addTextChangedListener(object: TextWatcher {
override fun beforeTextChanged(p0: CharSequence?,
p1: Int, p2: Int, p3: Int) {
// do something here
}
override fun onTextChanged(p0: CharSequence?,
p1: Int, p2: Int, p3: Int) {
var lettersOnly = true
p0?.forEach {
if (it.isDigit()){
lettersOnly = false
}
}
if (lettersOnly){
// hide/remove error from edit text when all are letters
editText.error = null
}else{
// set error on edit text when user enter any digit
editText.error = "Digit not allowed."
}
}
override fun afterTextChanged(p0: Editable?) {
// do something here
}
})
}
}
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"
xmlns:tools="http://schemas.android.com/tools"
android:background="#DCDCDC"
android:padding="32dp">
<EditText
android:id="@+id/editText"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginStart="12dp"
android:layout_marginEnd="12dp"
android:padding="12dp"
android:textSize="30sp"
android:inputType="text|textVisiblePassword"
android:fontFamily="sans-serif-condensed-medium"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.12" />
</androidx.constraintlayout.widget.ConstraintLayout>
- android kotlin - Chip border color
- android kotlin - Chip background color
- android kotlin - ChipGroup single selection
- android kotlin - NumberPicker string values
- android kotlin - NumberPicker divider height
- android kotlin - NumberPicker text size
- android kotlin - NumberPicker text color
- android kotlin - Disable soft keyboard on NumberPicker
- android kotlin - EditText space validation
- android kotlin - EditText email validation
- android kotlin - EditText select all on focus
- android kotlin - Show soft keyboard when EditText is focused
- android kotlin - EditText allow only certain characters
- android kotlin - Set EditText digits programmatically
- android kotlin - EditText allow only positive numbers