已弃用的 android Material chip.setCloseIconEnabled(true) 的替代方案是什么
what is the alternative for deprecated android Material chip.setCloseIconEnabled(true)
我正在使用 material android 芯片。此处关闭图标不可见。在查看了一些参考资料后,我正在使用 chip.setCloseIconEnabled(true) 但它已被弃用。
final Chip chip=new Chip(MainActivity.this);
chip.setText(color);
chip.setCheckable(false);
chip.setClickable(true);
chip.setCloseIconEnabled(true);
chipGroup.addView(chip);
你可以使用setCloseIconVisible(true)
我正在使用 material android 芯片。此处关闭图标不可见。在查看了一些参考资料后,我正在使用 chip.setCloseIconEnabled(true) 但它已被弃用。
final Chip chip=new Chip(MainActivity.this);
chip.setText(color);
chip.setCheckable(false);
chip.setClickable(true);
chip.setCloseIconEnabled(true);
chipGroup.addView(chip);
你可以使用setCloseIconVisible(true)