Is That Possible multiple Radio Button select in android?

16,592

Solution 1

If you don't put them all in a RadioGroup then yes. Either put them in several groups or manage them yourself completely.

But it's confusing for the user if you use radio buttons that behave like checkboxes.

Solution 2

Radiobutton in wikipedia says

A radio button or option button is a type of graphical user interface element that allows the user to choose only one of a predefined set of options.

You would have to just use checkboxes instead of radio button for allowing multiple options to be selected,else you are doing something which is inherently wrong in a UI be it mobile/web.

:-)

Share:
16,592
Horrorgoogle
Author by

Horrorgoogle

Hello, I am an android developer using Java and kotlin. Besides work, I loved to post articles on my blog PrAndroid, CodingWorkspace. I like to watching soccer, movies and traveling. I have my own 6H rule — (Home||Help||Happiness||Health||Humanity||Honesty) You can catch me following: Personal Website GitHub Google Play Store LinkedIn Angle.co Medium ###HappyCoding - #ILoveKotlin #PrAndroid #CodingWorkspace #APT3004

Updated on June 12, 2022

Comments

  • Horrorgoogle
    Horrorgoogle almost 2 years

    Is That possible select multiple radio button at one times? Just like checkbok.I have to show more in figure.

    enter image description here

  • Stoycho Andreev
    Stoycho Andreev almost 8 years
    I would say that this answer is the right one, because you can use still radio buttons with multi selection , but you have to move them outside of the RadioGroup , and maybe you have to manage them manually. If you don't want this action then just use checkbox where multi selection is allowed.