- Spinner
- Общая информация
- Используем адаптер
- В закрытом состоянии
- В раскрытом состоянии
- За честные выборы! — что выбрал пользователь
- Предупредить компонент об изменении пунктов
- Найти позицию по слову
- Тонкая настройка — своя разметка для Spinner
- spinner.xml
- spinner_dropdown_item.xml
- Программная настройка цвета и размера текста для первой строчки
- Не выбирать элемент при запуске
- CustomAdapter.java
- Режим android:spinnerMode=»dialog»
- Spinner in Kotlin
- Different attributes for Spinner widget
- Modify activity_main.xml file
- Tutorialwing
- Output
- Getting Started
- Creating New Project
- Setup ViewBinding
- Using Spinner in Kotlin
- Different Attributes of Spinner in XML
- Set Id of Spinner
- Set Width of Spinner
- Set Height of Spinner
- Set Padding of Spinner
- Set Margin of Spinner
- Set Background of Spinner
- Set Visibility of Spinner
- Set Text of Spinner
- Set Color of Text in Spinner
- Set Gravity of Spinner
- Set Text in Uppercase, Lowercase
- Set text in uppercase
- How do we set text in lowercase?
- Set Size of Text in Spinner
- Set Style (Bold/italic) of Text in Spinner
- Set Letter Spacing of Text in Spinner
- Set Typeface of Text in Spinner
- Set fontFamily of Text in Spinner
- Different Attributes of Android Spinner Widget
Spinner
Общая информация
Компонент Spinner из раздела Containers (раньше был в разделе Widgets) похож на выпадающий список (ComboBox), используемый в OC Windows (не путать с игрушкой Fidget Spinner). В закрытом состоянии компонент показывает одну строчку, при раскрытии выводит список в виде диалогового окна с переключателями.
Сначала покажу быстрый способ использования элемента. При добавлении элемента на экран отображается просто полоска со строкой Item1. В основном настройка происходит программным путём. Но можно и через XML. Добавим в строковый файл ресурсов strings.xml несколько элементов массива:
Теперь осталось в атрибуте android:entries указать на созданный массив и компонент Spinner будет заполнен данными. Запустите проект и проверьте.
Цвет компонента можно задать в атрибуте android:background=»@color/colorAccent».
Внешний вид компонента в разных версиях Android менялся.
Если нужно из программы узнать, какой пункт из выпадающего списка выбран в Spinner, то можно использовать такой код, например, при нажатии кнопки:
Если нужен не текст, а номер позиции, то вызывайте метод getSelectedItemPosition()
Если вам нужно получить выбранный элемент сразу в момент выбора, то используйте метод setOnItemSelectedListener(), который описан ниже.
Используем адаптер
Как и в случае с компонентом ListView, Spinner использует адаптер данных для связывания содержимого из набора данных с каждым пунктом в списке. Для загрузки данных нужно:
- Получить экземпляр компонента Spinner
- Настроить адаптер данных для связывания
- Вызвать метод setAdapter()
В закрытом состоянии
В раскрытом состоянии
Данные в закрытом и раскрытом состоянии Spinner отображает по разному. Поэтому необходимо создавать макеты шаблонов для обоих состояний. Android предоставляет несколько своих собственных ресурсов для Spinner для простых задач. Например, есть ресурс android.R.layout.simple_spinner_item для создания представления для каждого элемента списка. Ресурс android.R.layout.simple_spinner_dropdown_item служит шаблоном для раскрывающего списка.
Создадим строковый массив в файле strings.xml:
Загрузим строковый массив с именем animals в экземпляр класса ArrayAdapter при помощи метода createFromResource():
Запустив программу, вы увидите работающий пример, как на картинках, представленных выше.
По умолчанию выводится первый элемент списка. С помощью метода setSelection() можно установить нужный элемент по умолчанию, указав индекс из строкового ресурса.
За честные выборы! — что выбрал пользователь
Нам интересно узнать, что именно выбрал пользователь из списка и обработать эту информацию.
Нам нужно получить выбранный пользователем пункт в компоненте Spinner при помощи метода setOnItemSelectedListener() и реализовать метод onItemSelected() класса AdapterView.OnItemSelectedListener:
Теперь при выборе любого пункта вы получите всплывающее сообщение о выбранном пункте. Обратите внимание, что нам также пришлось реализовать вызов обратного вызова onNothingSelected().
В начале статьи показывался более простой способ с использованием метода getSelectedItem(), который достаточен для большинства случаев.
Предупредить компонент об изменении пунктов
Если в приложении вы изменили состав выпадающего списка, то необходимо сообщить компоненту Spinner, чтобы он показывал обновлённый список. Сделать это можно при помощи метода адаптера notifyDataSetChanged().
Найти позицию по слову
Если мы хотим узнать, в какой позиции находится то или иное слово, то нужно получить адаптер через метод getAdapter(), а затем уже и позицию.
Тонкая настройка — своя разметка для Spinner
Вы можете установить собственный фон, но не можете установить, к примеру, цвет и размер текста в настройках свойств. В предыдущих примерах мы видели, что при подключении к адаптеру используются системные разметки android.R.layout.simple_spinner_item и android.R.layout.simple_spinner_dropdown_item. Ничто не мешает вам посмотреть исходники данных файлов и создать файлы для собственной разметки, которые потом можно подключить к адаптеру.
Давайте создадим собственную разметку с значками. В папке res/layout создаём файл row.xml:
Осталось в коде заменить две строки на одну:
В примере использовался один общий файл, но можете создать два отдельных шаблона для закрытого и раскрытого вида элемента. Например, так (простейший вариант):
spinner.xml
spinner_dropdown_item.xml
В принципе, вы можете установить свой значок для каждого пункта, вам нужно создать свой адаптер под свои нужды. Создадим новый класс на основе ArrayAdapter и реализуем задачу. Теперь у двух любимых дней недели будет выводиться лапочка.
Программная настройка цвета и размера текста для первой строчки
В сети нашёл пример программной установки цвета и размера текста для первой строчки элемента в закрытом состоянии. Может кому пригодится.
Не выбирать элемент при запуске
Иногда хочется, что при запуске не выбирался первый элемент списка, как это происходит по умолчанию. Решение в лоб — добавить первым элементом пустую строку или текст «Выберите. » не слишком красив, так как при раскрытии списка мы увидим эти элементы, которые только портят картину. В сети нашёл вариант, использующий собственный адаптер.
CustomAdapter.java
Попробуйте этот вариант, может он подойдёт вам.
Режим android:spinnerMode=»dialog»
У компонента есть атрибут android:spinnerMode, у которого можно установить значение dialog. В этом случае при раскрытии списка задняя активность затемняется. Это хорошо заметно на белом фоне. Проверьте самостоятельно.
В этом режиме диалога для компонента Spinner можно вывести заголовок с помощью методов setPrompt() или setPromptId(). Заголовок выводится при раскрытии списка.
Источник
Spinner in Kotlin
Android Spinner is a view similar to dropdown list which is used to select one option from the list of options. It provides an easy way to select one item from the list of items and it shows a dropdown list of all values when we click on it.
Default value of the android spinner will be currently selected value and by using Adapter we can easily bind the items to spinner object.
Generally, we populate our Spinner control with list of items by using an ArrayAdapter in our Kotlin file.
First we create a new project by following the below steps:
- Click on File, then New =>New Project.
- After that include the Kotlin support and click on next.
- Select the minimum SDK as per convenience and click next button.
- Then select the Empty activity =>next =>finish.
Different attributes for Spinner widget
XML attributes | Description |
---|---|
android:id | Used to specify the id of the view. |
android:textAlignment | Used to the text alignment in the dropdown list. |
android:background | Used to set the background of the view. |
android:padding | Used to set the padding of the view. |
android:visibility | Used to set the visibility of the view. |
android:gravity | Used to specify the gravity of the view like center, top, bottom, etc |
Modify activity_main.xml file
In this file, we use the TextView and Spinner widgets and also set their attributes.
Источник
Tutorialwing
In this article, we will learn about android Spinner using Kotlin. We will go through various example that demonstrates how to use different attributes of Spinner. For example, …..
In this article, we will get answer to questions like –
- What is Spinner?
- Why should we consider Spinner while designing ui for any app?
- What are possibilities using Spinner while designing ui? etc.
Let’s have a quick demo of things we want to cover in this tutorial –
Output
Tutorialwing Android Spinner Output
Tutorialwing Android Spinner Output
Getting Started
We can define android Spinner widget as below –
Android spinner is a widget that have multiple options as list in the dropdown, but finally shows option selected by the user.
Now, how do we use Spinner 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 Spinner. 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 Spinner 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 Spinner in Kotlin
Follow steps below to use Spinner 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 –
- We can also access it in Kotlin File, MainActivity.kt, as below –
Now, run the application. We will get output as below –
Tutorialwing Android Spinner Output
Tutorialwing Android Spinner Output
Different Attributes of Spinner in XML
Now, we will see how to use different attributes of Android Spinner using Kotlin to customise it –
Set Id of Spinner
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 Spinner using android:id attribute like below –
Here, we have set id of Spinner as spinner_ID using android:id=”” attribute. So, if we need to reference this Spinner, we need to use this id – spinner_ID.
Learn to Set ID of Spinner Dynamically
Set Width of Spinner
We use android:layout_width=”” attribute to set width of Spinner.
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 Spinner Dynamically
Set Height of Spinner
We use android:layout_height=”” attribute to set height of Spinner.
We can do it as below –
Height can be either “MATCH_PARENT” or “WRAP_CONTENT” or any fixed value.
Learn to Set Height of Spinner Dynamically
Set Padding of Spinner
We use android:padding=”” attribute to set padding of Spinner.
We can do it as below –
Here, we have set padding of 10dp in Spinner using android:padding=”” attribute.
Learn to Set Padding of Spinner Dynamically
Set Margin of Spinner
We use android:layout_margin=”” attribute to set margin of Spinner.
We can do it as below –
Here, we have set margin of 10dp in Spinner using android:layout_margin=”” attribute.
Learn to Set Margin of Spinner Dynamically
Set Background of Spinner
We use android:background=”” attribute to set background of Spinner.
We can do it as below –
Here, we have set background of color #ff0000 in Spinner using android:background=”” attribute.
Learn to Set Background of Spinner Dynamically
Set Visibility of Spinner
We use android:visibility=”” attribute to set visibility of Spinner.
We can do it as below –
Here, we have set visibility of Spinner using android:visiblity=”” attribute. Visibility can be of three types – gone, visible and invisible
Learn to Set Visibility of Spinner Dynamically
Set Text of Spinner
We use android:text=”” attribute to set text of Spinner.
We can do it as below –
Here, we have set text (“Hello Tutorialwing”) in Spinner using android:text=”” attribute.
Similarly, we can set any text using this attribute.
Learn to Set Text of Spinner Dynamically
Set Color of Text in Spinner
We use android:textColor=”” attribute to set color of text in Spinner.
We can do it as below –
Here, we have set color (#ffffff i.e. white) of text (“Hello Tutorialwing”) in Spinner using android:textColor=”” attribute. Similarly, we can set any color using this attribute.
Learn to Set Color of Spinner Dynamically
Set Gravity of Spinner
We use android:gravity=”” attribute to set gravity of text in Spinner.
We can do it as below –
Here, we have set gravity of text in Spinner using android:gravity=”” attribute. Attribute value can be – “center_horizontal”, “center”, “center_vertical” etc.
Learn to Set Gravity of Spinner Dynamically
Set Text in Uppercase, Lowercase
If we need to show text of Spinner in uppercase or lowercase etc.
Set text in uppercase
We can use android:textAllCaps=”true” attribute to set text in uppercase. We can do it as below –
Attribute android:textAllCaps=”true” sets text in uppercase. So, HELLO TUTORIALWING is set in Spinner.
By default, false is set in this attribute. So, Whatever value is written in android:text=”” attribute, it will be set as it is. For example,
Above code will set Hello Tutorialwing to Spinner.
How do we set text in lowercase?
- In xml file – write all the text in lowercase.
- In kotlin file – take text as string. Then, convert it in lowercase. Then, set it to Spinner.
Set Size of Text in Spinner
We use android:textSize=”” attribute to set size of text in Spinner.
We can do it as below –
Here, we have set size of text in Spinner using android:textSize=”” attribute.
Learn to Set Size of Text of Spinner Dynamically
Set Style (Bold/italic) of Text in Spinner
We use android:textStyle=”” attribute to set style (bold, italic etc.) of text in Spinner.
We can do it as below –
Here, we have set style of text in Spinner using android:textStyle=”” attribute. This attribute can take bold, italic or normal.
Learn to Set Style of Text of Spinner Dynamically
Set Letter Spacing of Text in Spinner
We use android:letterSpacing=”” attribute to set spacing between letters of text in Spinner.
We can do it as below –
Here, we have set spacing between letters of text in Spinner using android:letterSpacing=”” attribute.
Learn to Set Letter Spacing of Text of Spinner Dynamically
Set Typeface of Text in Spinner
We use android:typeface=”” attribute to set typeface in Spinner.
We can do it as below –
Here, we have set typeface of text in Spinner using android:typeface=”” attribute. This attribute can take values – “sans”, “normal”, “monospace” or “normal”.
Learn to Set Typeface of Spinner Dynamically
Set fontFamily of Text in Spinner
We use android:fontFamily=”” attribute to set fontFamily of text in Spinner.
We can do it as below –
Here, we have set fontFamily (Here, sans-serif) of text in Spinner using android:fontFamily=”sans-serif” attribute.
Till now, we have see how to use android Spinner using Kotlin. We have also gone through different attributes of Spinner to perform certain task. Let’s have a look at list of such attributes and it’s related task.
Different Attributes of Android Spinner Widget
Below are the various attributes that are used to customise android Spinner Widget. However, you can check the complete list of attributes of Spinner in it’s official documentation site. Here, we are going to list some of the important attributes of this widget –
Some of the popular attributes of android spinner widget are –
Sr. | XML Attributes | Description |
---|---|---|
1 | android:dropDownHorizontalOffset | This is used to set horizontal offset of the dropdown shown in spinner. |
2 | android:dropDownSelector | This is used as list selector when spinnerMode is dropdown. |
3 | android:dropDownVerticalOffset | This is used to set vertical offset of the dropdown shown in spinner. |
4 | android:dropDownWidth | This is used to set width of the dropdown when spinnerMode=”dropdown” |
5 | android:gravity | It specifies the position of the currently selected item. |
6 | android:popupBackground | Sets background of the dropdown when spinnerMode=”dropdown” |
7 | android:prompt | Prompt to show when the spinner’s dialog is shown. |
8 | android:spinnerMode | Sets the display mode for spinner options. |
Attributes of spinner widget are also inherited from AbsSpinner, ViewGroup and View. Some of the popular attributes of android spinner inherited from AbsSpinner are –
Sr. | XML Attributes | Description |
---|---|---|
1 | android:entries | This is used to set reference to an array resource that will populate the spinner. |
Some of the popular attributes of android spinner inherited from ViewGroup are –
Sr. | XML Attributes | Description |
---|---|---|
1 | android:addStatesFromChildren | It is used to set whether viewgroup’s drawable state also include it’s children drawable states. |
2 | android:alwaysDrawnWithCache | It is used to set whether viewgroup’s children will be drawn using their drawable cache or not. |
3 | android:animateLayoutChanges | It defines whether changes in layout (caused by adding and removing items) should cause a LayoutTransition to run. |
4 | android:animationCache | It is used to set whether layout animations should create a drawing cache for their children. |
5 | android:clipChildren | It is used to set whether a child is limited to draw inside of its bounds or not. |
Some of the popular attributes of android spinner inherited from View are –
Sr. | XML Attributes | Description |
---|---|---|
1 | android:alpha | Specifies alpha of the view. |
2 | android:background | Specifies background drawable of the view. |
3 | android:clickable | Specifies whether view is clickable or not. |
4 | android:elevation | Specifies base z-depth of the view. |
5 | android:id | Specifies unique id of the view. Note – Id of the view must always be unique in an xml file. |
6 | android:padding | Specifies padding of the view. |
7 | android:textAlignment | Specifies alignment of the text. |
8 | android:visibility | Specifies visibility(VISIBLE, INVISIBLE etc.) of the view. |
We have seen different attributes of Spinner and how to use it. If you wish to visit post to learn more about it
Thus, we have seen what is Spinner, how can we use android Spinner using Kotlin ? etc. We also went through different attributes of android Spinner.
Источник