Textinputlayout android studio kotlin

TextInputLayout

Макет TextInputLayout сначала появился в библиотеке Android Design Support Library и добавляет немного красоты к текстовому полю. Когда пользователь начинает вводить текст в текстовом поле, то подсказка, заданная в этом компоненте, всплывает над ним в специальном TextView. Пример можно увидеть на видео.

Библиотека больше не развивается, поэтому используйте AndroidX, которую я и буду теперь использовать в описании.

Компонент можно найти на панели инструментов в разделе Text.

При добавлении компонента через визуальный редактор автоматически добавляется дочерний элемент TextInputEditText.

Так выглядел компонент в составе Support Library.

Подсказку не обязательно указывать в атрибуте android:hint у текстового поля. Можно программно присвоить через метод:

Стилизация

В AndroidX у компонента появились новые стили: OutlinedBox, FilledBox. Можете самостоятельно запустить пример с двумя стилями и посмотреть на отличия.

Далее идёт текст для старой версии статьи. Вам следует самостоятельно обновить нужные фрагменты кода.

Общая стилизация доступна следующим образом. Пропишем стили в styles.xml:

Обработка ошибки

Предыдущий пример показывал применение подсказки. Но также можно выводить сообщения об ошибке. Здесь потребуется написать немного кода. За вывод ошибки отвечает атрибут app:errorEnabled. Назначим текстовому полю тип клавиатуры и однострочный текст. При наборе текста после нажатия на клавишу Enter проверяем длину текста. Если текст меньше четырёх символов, то выводим сообщение об ошибке.

Текст ошибки выводится снизу от текстового поля.

Стиль для сообщения об ошибке можно стилизовать. Добавим новый атрибут.

В файле стилей res/values/styles.xml добавим новый стиль:

Теперь выводится другим цветом.

Расширенный вид стилей:

Применяем через атрибуты app:errorTextAppearance и android:theme.

Счётчик символов

С помощью атрибутов app:counterEnabled и app:counterMaxLength можно установить счётчик символов с указанием предела, который будет выводиться под текстовым полем.

Когда будет превышен лимит, то цвет счётчика изменится. Этот цвет можно стилизовать через стиль.

Стиль применяется к атрибуту app:counterOverflowTextAppearance:

TextInputEditText

Казалось бы простой компонент, никаких трудностей не возникает. Но не торопитесь. Стоит повернуть устройства в альбомный режим, как текстовое поле растянется на весь экран и никакой подсказки вы не увидите. Возможно, это баг, который когда-нибудь починят. Но проблему легко решить, если вместо стандартного EditText использовать специальный компонент из библиотеки TextInputEditText:

Источник

Валидация элементов формы textInputLayout в Android с помощью связывания данных

Удобный способ валидации форм

«Чтобы научиться чему-то хорошо, нужно научиться делать это несколькими способами».

Несколько дней назад я работал над проектом, где мне нужно было реализовать валидацию элементов формы textInputLayout и textInputEditText с помощью связывания данных. К сожалению, доступно не так много документации на эту тему.

В конце концов я добился желаемого результата, изучив кое-какие материалы и проведя ряд экспериментов. Вот что я хотел получить:

Финальный вид приложения

Уверен, что многие разработчики хотели бы реализовать такой же функционал и удобное взаимодействие с формами. Итак, давайте начнем.

Что нам потребуется?

Я разобью проект на этапы, чтобы легче было понять, что мы делаем.

Читайте также:  Динг донг для андроид

1. Настроим исходный проект и включим связывание данных в файле build.gradle(:app) , добавив под тег android<> следующую строку:

Для использования элементов textInputLayout и textInputEditText необходимо включить поддержку Material для Android, добавив в файл build.gradle(:app) следующую зависимость:

Создадим макет нашей формы. Я сделаю простой макет, потому что моя цель — определить его основной функционал, а не создать хороший дизайн.

Я создал вот такой простой макет:

Вот содержимое файла activity_main.xml :

Если вас смущают теги , не переживайте — о них я написал в своей предыдущей статье.

Наш макет готов. Теперь займемся кодом.

2. На GIF-анимации, показывающей поведение финального варианта приложения (см. выше), видно, как появляются и исчезают сообщения об ошибках, когда заданные условия принимают значение true. Это происходит потому, что я связал каждое текстовое поле с объектом TextWatcher, к которому постоянно происходит обращение по мере ввода текста пользователем.

В файле MainActivity.kt я создал класс, который унаследован от класса TextWatcher :

Параметр view , который передается в конструктор класса, я опишу позже.

3. Это основная часть. У каждого текстового поля имеется ряд условий, которые должны иметь значение true перед отправкой данных формы. Код, задающий условия для каждого текстового поля, представлен ниже:

4. Теперь необходимо связать каждое текстовое поле с классом textWatcher , который был создан ранее:

Но как класс TextFieldValidation узнает, с каким текстовым полем нужно связываться? Прокрутив статью выше, вы увидите, что я добавил следующий комментарий в один из методов класса TextFieldValidation :

Обратите внимание, что я передаю параметр view в конструктор класса TextFieldValidation , который отвечает за разделение каждого текстового поля и применение каждого из указанных выше методов следующим образом:

Финальный вариант файла MainActivity.kt выглядит так:

Запустим приложение и полюбуемся поведением формы ввода:

Полный исходный код этого проекта можно скачать по ссылке ниже:

https://github.com/Mustufa786/TextInputLayout-FormValidation

Надеюсь, вы узнали из этой статьи что-то новое для себя. Следите за появлением новых статей! Успехов в разработке!

Источник

Textinputlayout android studio kotlin

Android TextInputLayout Tutorial

October 10, 2017

Android TextInputLayout makes it possible to display hint as floating label for EditText fields when it gets the focus.

Android TextInputLayout is a layout and can contain EditText widget or any of its descendants such as AppCompatEditText, AutoCompleteTextView, EmojiEditText, ExtractEditText, GuidedActionEditText, and SearchEditText.

TextInputLayout shows hint of child as label when hint is hidden. In addition to support for label, TextInputLayout also supports showing error message, password visibility toggling for password field, and character counter.

TextInputLayout Dependency

To use TextInputLayout in your application, you need to first add dependency to your project as shown below. TextInputLayout is part of android design library.

TextInputEditText with TextInputLayout

TextInputEditText is a subclass of EditText. It has been created to be used with TextInpputLayout so that layout can control the style of input field.

TextInputLayout TextInputEditText example

TextInputLayout Material Style

Below screen is the output of above layout when application theme is set to one of the app compact material themes. The pictures show hint when TextInputEditText is not focused and label when TextInputEditText is foucused and after value has been entered.

TextInputLayout Error

TextInputLayout supports error message. Using this feature, you can inform user about incorrect input for edit text fields by setting error message on TextInputLayout and display on UI.

When error needs to be displayed for a particular EditText, you need get parent TextInputLayout object and call setError method on it passing error message as an argument to it.

TextInputLayout set error

TextInputLayout remove error

Once error message is set on TextInputLayout object, it stays until it is removed. To clear or remove TextInputLayout error message, you need to call setError method passing null or empty message, in the above code else condition removes error message.

Читайте также:  Raid shadow legends кликер андроид

TextInputLayout error output

Android TextInputLayout Character Counter

TextInputLayout supports counter feature with which it can display number of characters entered into the input field. To enable counter, you need to call setCounterEnabled method passing boolean value true to it in the code or set counterEnabled xml attribute.

Note, to use attributes of TextInputLayout in xml layout, you need to define name space for android.support.design by setting it to android res-auto schema url as shown below.

TextInputLayout character counter output

Android TextInputLayout Password Visibility Toggle

TextInputLayout supports password visibility toggle feature with which user can toggle password visibility. This feature is applicable to password EditText fields. To enable password visibility toggle, you need to call setPasswordVisibilityToggleEnabled method passing boolean value true to it in the code or set passwordToggleEnabled xml attribute.

User can click password visibility toggle button to see password in plain text or disguised form.

You can customize password visibility toggle button by setting setPasswordVisibilityToggleDrawable attribute to your custom drawable.

TextInputLayout Custom Material Style

You can define custom material style and change color of hint and edit text underline color by setting colorControlActivated, counter color by setting textColorSecondary, error message color by setting colorControlNormal and password visibility button tint by setting colorForeground.

About

Android app development tutorials and web app development tutorials with programming examples and code samples.

Источник

Tutorialwing

In this article, we will learn about android TextInputLayout using Kotlin. We will go through various example that demonstrates how to use different attributes of TextInputLayout. For example,

In this article, we will get answer to questions like –

  • What is TextInputLayout?
  • Why should we consider TextInputLayout while designing ui for any app?
  • What are possibilities using TextInputLayout while designing ui? etc.

Let’s have a quick demo of things we want to cover in this tutorial –

Output

Android TextInputLayout Output

Android TextInputLayout Output

Getting Started

We can define android TextInputLayout widget as below –

TextInputLayout is a layout that wraps EditText (or descendant) to show floating level when the hint is hidden due to user inputting text.

You can also show error message (if any) or character count using TextInputLayout.

TextInputEditText is used as child of this layout. It allows greater control over visual aspects of any text input.

Now, how do we use TextInputLayout in android application ?

Creating New Project

At first, we will create an application.
So, follow steps below to create any android project in Kotlin –

Step Description
1. Open Android Studio (Ignore if already done).
2. Go to File => New => New Project. This will open a new window. Then, under Phone and Tablet section, select Empty Activity. Then, click Next.
3. In next screen, select project name as TextInputLayout. Then, fill other required details.
4. Then, clicking on Finish button creates new project.

Some very important concepts (Recommended to learn before you move ahead)

Before we move ahead, we need to setup for viewBinding to access Android TextInputLayout Using Kotlin file without using findViewById() method.

Setup ViewBinding

Add viewBinding true in app/build.gradle file.

Now, set content in activity using view binding.
Open MainActivity.kt file and write below code in it.

Now, we can access view in Kotlin file without using findViewById() method.

Читайте также:  Как прошить перепрошить андроид

Using TextInputLayout in Kotlin

Follow steps below to use TextInputLayout in newly created project –

  • Open res/values/strings.xml file. Then, add below code into it.
  • Open res/layout/activity_main.xml file. Then, add below code in it –

Here, we have defined two textInputLayout with textInputEditText that are used as username and password fields. Then, there is a button that are used to get the texts entered in username and password fields. Now, we will access these fields in kotlin file.
We can also access it in Kotlin File, MainActivity.kt, as below –

In MainActivity.kt file, we have accessed username and password fields. Then, we have set a click listener on button to get the texts entered in username and password fields. Then, show it as toast message to the user.

Now, run the application. We will get output as below –

Android TextInputLayout Output

Android TextInputLayout Output

Different Attributes of TextInputLayout in XML

Now, we will see how to use different attributes of Android TextInputLayout using Kotlin to customise it –

Set Id of TextInputLayout

Many a time, we need id of View to access it in kotlin file or create ui relative to that view in xml file. So, we can set id of TextInputLayout using android:id attribute like below –

Here, we have set id of TextInputLayout as textInputLayout_ID using android:id=”” attribute. So, if we need to reference this TextInputLayout, we need to use this id – textInputLayout_ID.
Learn to Set ID of TextInputLayout Dynamically

Set Width of TextInputLayout

We use android:layout_width=”” attribute to set width of TextInputLayout.
We can do it as below –

Width can be either “MATCH_PARENT” or “WRAP_CONTENT” or any fixed value (like 20dp, 30dp etc.).
Learn to Set Width of TextInputLayout Dynamically

Set Height of TextInputLayout

We use android:layout_height=”” attribute to set height of TextInputLayout.
We can do it as below –

Height can be either “MATCH_PARENT” or “WRAP_CONTENT” or any fixed value.
Learn to Set Height of TextInputLayout Dynamically

Set Padding of TextInputLayout

We use android:padding=”” attribute to set padding of TextInputLayout.
We can do it as below –

Here, we have set padding of 10dp in TextInputLayout using android:padding=”” attribute.
Learn to Set Padding of TextInputLayout Dynamically

Set Margin of TextInputLayout

We use android:layout_margin=”” attribute to set margin of TextInputLayout.
We can do it as below –

Here, we have set margin of 10dp in TextInputLayout using android:layout_margin=”” attribute.
Learn to Set Margin of TextInputLayout Dynamically

Set Background of TextInputLayout

We use android:background=”” attribute to set background of TextInputLayout.
We can do it as below –

Here, we have set background of color #ff0000 in TextInputLayout using android:background=”” attribute.
Learn to Set Background of TextInputLayout Dynamically

Set Visibility of TextInputLayout

We use android:visibility=”” attribute to set visibility of TextInputLayout.
We can do it as below –

Here, we have set visibility of TextInputLayout using android:visiblity=”” attribute. Visibility can be of three types – gone, visible and invisible
Learn to Set Visibility of TextInputLayout Dynamically

Till now, we have see how to use android TextInputLayout using Kotlin. We have also gone through different attributes of TextInputLayout to perform certain task. Let’s have a look at list of such attributes and it’s related task.

Thus, we have seen what is TextInputLayout, how can we use android TextInputLayout using Kotlin ? etc. We also went through different attributes of android TextInputLayout.

Источник

Оцените статью