interface ErrorField
abstract var isErrorVisible: Boolean
Checks if an error view is currently displayed |
abstract fun hideErrorView(): Unit
Hides the error message previously displayed |
|
abstract fun setError(message: Int): Unit abstract fun setError(message: String): Unit |
|
abstract fun showErrorView(): Unit
Displays an error message related to the input field |
interface InputField : ErrorField
Describes an input field which is entitled to prevent access to its content if it is considered invalid. Implementations should verify their input before potentially providing it. |
|
abstract class SchibstedView : LinearLayout, ErrorField |