nex3z / ToggleButtonGroup

A group of flowable toggle buttons, with multiple / single selection support and button customization.
Apache License 2.0
421 stars 49 forks source link

how to disable touch to MultiSelectToggleGroup? #64

Closed iamkdblue closed 4 years ago

iamkdblue commented 4 years ago

I tried android:state_enabled="false" but its not worked for me.

nex3z commented 4 years ago

Try this:

final MultiSelectToggleGroup multi = findViewById(R.id.group_weekdays);

for (int i = 0; i < multi.getChildCount(); i++) {
    multi.getChildAt(i).setClickable(false);
}