- RadioButton и RadioGroup
- Методы
- Программное добавление переключателя
- Добавление картинок к переключателю
- Пример с переключателями
- Слушатель OnCheckedChangeListener
- Метод clearCheck()
- Метод getCheckedRadioButtonId(): Узнать выбранный элемент
- Кот или муж?
- Собственные стили
- Собственный вид
- Android | How to add Radio Buttons in an Android Application?
- How to create an Android App to use Radio Buttons
- Radio Button in Android: Learn Basics and Customization
- Understanding Radio Group for Radio Buttons
- Using RadioButton with RadioGroup
- Handling RadioButton events
- RadioButton click event
- Clicking on RadioButton through code
- Styling radio button in Android
- Change radio button color
- Change radio button background
RadioButton и RadioGroup
Познакомимся с компонентом RadioButton, который находится в разделе Buttons. Главная особенность элемента состоит в том, что он не используется в одиночестве. Всегда должно быть два и более переключателя и только один из них может быть выбранным. Это похоже на кнопки на старых радиоприёмниках, когда нажимая на одну из кнопок, вы заставляете отключиться другую нажатую кнопку.
Компоненты RadioButton (переключатель) используются в составе контейнера RadioGroup. Обратите внимание на два момента. Первое — в контейнер RadioGroup можно включать не только RadioButton, но и другие элементы, например, TextView. Второе — переключатели работают в своём контейнере, т.е. если у вас два контейнера RadioGroup, то переключатели из одного контейнера не влияют на поведение переключателей второго контейнера.
Методы
Основным методом для переключателя является toggle(), который инвертирует состояние переключателя. Также представляют интерес методы isChecked(), который возвращает состояние кнопки, и setChecked(), изменяющий состояние кнопки в зависимости от параметра.
Для уведомления о переходе положения переключателя в активное или неактивное состояние в результате определённых событий, нужно вызывать метод setOnCheckedChangeListener() с применением слушателя OnCheckedChangeListener.
Программное добавление переключателя
Получив ссылку на группу переключателей, можно добавить в неё ещё один переключатель (или другой элемент управления) через метод addView():
Добавление картинок к переключателю
Вы можете добавить изображение в левой, правой, верхней и нижней части переключателя, используя либо определённые атрибуты XML или программно.
Через атрибут drawableRight и ему подобных:
Программно через метод setCompoundDrawables(left, top, right, bottom):
В этом примере мы указали только одно значение для правого края, остальным присвоили значение null. Можно одновременно задействовать все стороны переключателя.
Пример с переключателями
Создадим новую форму с четырьмя кнопками-переключателями, с помощью которых будем заливать фон приложения выбранным цветом. Сначала подготовим строковые ресурсы.
Создадим простейшую разметку на основе LinearLayout. Заполним форму текстовым блоком определённого цвета и присвоим ему текст «Текущий цвет». В нижней части формы расположим четыре цветных текстовых блока, а под ними четыре переключателя, с помощью которых мы будем менять цвет основного текстового блока.
Обратите внимание, что элементы RadioButton помещаются в контейнер RadioGroup. Если теперь посмотреть на форму, то увидим одно большое серое поле. А снизу расположились в ряд четыре метки, а ещё ниже также в ряд расположились четыре переключателя. Причём последний серый переключатель имеет выбранный статус (android:checked=»true»).
Переходим к программной части. Добавляем слушатель для обработки щелчков на кнопках-переключателях.
Запустим приложение и посмотрим, что у нас получилось. Пощёлкаем по переключателям и убеждаемся, что всё работает.
Слушатель OnCheckedChangeListener
Показанный выше способ использует щелчок, так как переключатели можно рассматривать как кнопки. Но на самом деле у переключателей есть свой слушатель OnCheckedChangeListener. Я расположил в новом проекте RadioGroup с тремя RadioButton и написал простенький пример.
Этот способ намного удобней. Вам даже не нужно объявлять ссылки на переключатели и назначать им слушатели. Код получается более компактным.
Обратите внимание, что метод onCheckedChanged() принимает параметр RadioGroup, что позволяет применять один и тот же слушатель OnCheckedChangeListener() для нескольких групп переключателей. Вариант -1 сработает, когда группа переключателей будет сброшена в коде с помощью метода clearCheck().
Метод clearCheck()
Когда пользователь выберет любой из переключателей, то он уже не сможет снять с него отметку. Какой-нибудь из переключателей обязательно будет выбран в одном контейнере с ним. Единственный способ очистить все переключатели — программно вызвать метод clearCheck(), который относится к классу RadioGroup.
Метод getCheckedRadioButtonId(): Узнать выбранный элемент
У RadioGroup есть также метод getCheckedRadioButtonId(), который позволяет узнать идентификатор выбранного переключателя. Можем узнать выбранный переключатель через нажатие кнопки.
Также можно узнать индекс выбранного переключателя через метод indexOfChild():
Кот или муж?
Теперь, когда вы познакомились с новым элементом, то вам не составит труда написать программу для нелёгкого выбора.
Девушки, нужен ли вам такой муж? Если он не любит котиков, то будет ли любить вас? Возьмите лучше котёнка. Он клёвый.
Собственные стили
Если вы используете стандартный проект, то переключатели будут использовать цвета Material Design, в частности цвет colorAccent для кружочка с точкой.
В файле res/values/styles.xml добавим строки:
Свойство colorControlNormal отвечает за окружность в невыбранном состоянии, а colorControlActivated за точку и окружность в выбранном состоянии.
Присваиваем созданный стиль атрибуту android:theme:
Теперь цвета флажков изменились.
Собственный вид
Если вас не устраивает стандартный вид элементов RadioButton, то не составит никакого труда реализовать свои представления о дизайне.
В папке res/drawable создаём файл radiobutton_selector.xml:
Также необходимо подготовить два изображения для двух состояний — выбран и не выбран.
Осталось прописать селектор в элементе RadioButton при размещении на экране (атрибут android:button):
Готово! Можете запускать проект и проверять работу переключателей.
Источник
Android | How to add Radio Buttons in an Android Application?
Android radio button is a widget which can have more than one option to choose from. The user can choose only one option at a time. Each option here refers to a radio button and all the options for the topic are together referred to as Radio Group. Hence, Radio Buttons are used inside a RadioGroup.
Attention reader! Don’t stop learning now. Get hold of all the important Java Foundation and Collections concepts with the Fundamentals of Java and Java Collections Course at a student-friendly price and become industry ready. To complete your preparation from learning a language to DS Algo and many more, please refer Complete Interview Preparation Course.
For Example:
This image shows 4 options of the subjects for a question. In this, each mentioned subject is a Radio Button and all the 4 subjects together are enclosed in a Radio Group.
How to create an Android App to use Radio Buttons
This example will help in developing an Android App that create Radio Buttons according to the above example:
Step 1: First create a new Android Application. This will create an XML file “activity_main.xml” and a Java File “MainActivity.Java”. Please refer the pre-requisites to learn more about this step.
Step 2: Open “activity_main.xml” file and add following widgets in a Relative Layout:
- A TextView to display the question message
- A RadioGroup to hold the option Radio Buttons which are the possible answers
- 4 RadioButtons to hold an answer each.
- A Submit and a Clear button to store the response.
Also, Assign the ID to each of the component along with other attributes as shown in the given image and the code below. The assigned ID on a component helps that component to be easily found and used in the Java files.
Syntax:
Here the given IDs are as follows:
This will make the UI of the Application.
Step 3: Now, after the UI, this step will create the Backend of Application. For this, open the “MainActivity.java” file and instantiate the components made in the XML file (RadioGroup, TextView, Clear, and Submit Button) using findViewById() method. This method binds the created object to the UI Components with the help of the assigned ID.
General Syntax:
ComponentType object = (ComponentType)findViewById(R.id.IdOfTheComponent);
Syntax for components used:
Button submit = (Button)findViewById(R.id.submit);
Button clear = (Button)findViewById(R.id.clear);
RadioGroup radioGroup = (RadioGroup)findViewById(R.id.groupradio);
Step 4: This step involves setting up the operations on the RadioGroup, RadioButtons and the Submit and Clear Buttons.
These operations are as follows:
- Unset all the Radio Buttons initially as the default value. This is done by the following command:
- Add the Listener on the RadioGroup. This will help to know whenever the user clicks on any Radio Button, and the further operation will be performed. The listener can be added as follows:
radioGroup.setOnCheckedChangeListener(new RadioGroup.OnCheckedChangeListener()<>
- Define the operations to be done when a radio button is clicked. This involves getting the specific radio button that has been clicked, using its id. Then this radio button gets set and the rest of the radio button is reset.
- Add the listener on Submit button and clear button. This will be used to check when the user clicks on the button. This is done as follows:
submit.setOnClickListener(new View.OnClickListener() <>
clear.setOnClickListener(new View.OnClickListener() <>
- In the Submit Button Listener, set the operations to be performed. This involves displaying the marked answer in the form of Toast.
- In the Clear Button Listener, set the operations to be performed. This involves resetting all the radio buttons.
Step5: Now run the app and operate as follows:
- When the app is opened, it displays a question with 4 answers and a clear and submit button.
- When any answer is clicked, that radio button gets set.
- Clicking on any other radio button sets that one and resets the others.
- Clicking on Submit button displays the currently marked answer as a Toast.
- Clicking on Clear button resets all the radio buttons to their default state.
Источник
Radio Button in Android: Learn Basics and Customization
Here is a simple tutorial to understand Radio Button in Android. I have also included mostly used customization for Android.
Radio button is a type of View that allows user to select one option from a set. Normally the available options are the ones user must see to decide.
Here is a sample code for RadioButton , place it in your .xml layout file.
Before we move any further let us first understand the RadioGroup class in Android.
And later we will also look at how we can customize RadioButton . Customization will include changing the color of RadioButton.
Understanding Radio Group for Radio Buttons
RadioGroup in Android is a class that acts as a wrapper for RadioButton . If you are using radio buttons then you have more one value to deal with.
And if you use multiple radio button without RadioGroup. You will have a bunch of radio buttons that will allow multiple selections.
But we do not want that. We want our radio button to be checked one at a time. For this purpose we will use a RadioGroup .
Sample code for radio group is given below.
Now the above code might make no sense to you. Let us use it on a real layout.
Also, note the android:orientation=»horizontal» attribute I have for RadioGroup. We can use it because the class RadioGroup extends LinearLayout .
Using RadioButton with RadioGroup
Here is a sample code for you we will continue our further code based on this.
First let us create a simple layout:
Now let us map everything in our activity like below.
We will add interaction for the radio buttons below.
Handling RadioButton events
Now that we have multiple radio buttons in our Android application. Let us finally interact with them in this section.
We will breakup this section into two parts.
RadioButton click event
We obviously want to do something when a radio button is clicked. We can do exactly this by adding the code below in our activity like below.
Now let us look at how we can programatically click on any of the radio button.
Clicking on RadioButton through code
It’s really simple to click any of the radio button through code. All you have to dois know the id of the button.
For this example let us click on option_two . Which can be done like below.
Now that we have looked into handling click events. Let us look at customizing the radio button.
Styling radio button in Android
Let us look at how we can customize the radio button.
Change radio button color
Let us see how we can change the color of our radio button. And by colors of radio button, I mean the text color and the button color itself.
Let us see how we can change the text color. We use the attribute named android:textColor for this.
Also, to change the radio button’s color we use android:buttonTint . If you’re on AndroidX this should work for all API levels.
Now let us extract the code to our styles.xml or themes.xml file.
And use it in your radio buttons as
The above style is going to change the color to black. Let us look at more customization.
Change radio button background
We can also change background like in other views. Let us look at this sample drawable file.
You have to use it like any other drawable file in your andorid:background attribute.
That is all you have to know as a beginner. If you have any queries feel free to comment below.
Источник