material-chip-view
material-chip-view copied to clipboard
Material Chip view. Can be used as tags for categories, contacts or creating text clouds
creating and adding chip to the ChipsGroup for (i in selectedStates){ val chip = Chip(this) chip.text = i chip.setBackgroundColor(Color.parseColor("#2929290D")) chip.chipIcon = ContextCompat.getDrawable(this, R.drawable.ic_close) work_location_chipgroup.addView(chip) chip.setOnClickListener{ work_location_chipgroup.removeView(it) } } When adding...
When you use RTL onClose doesn't work