Holi Boom
Holi Boom
@hanifmhd Use this [TextDrawable.java](https://github.com/devunwired/textdrawable/blob/master/sample/src/main/java/com/example/textdrawable/drawable/TextDrawable.java) custom class to change SimpleCircleButton image to text. `BoomMenuButton bmb = (BoomMenuButton) findViewById(R.id.bmb);` `for (int i = 0; i < bmb.getPiecePlaceEnum().pieceNumber(); i++){` ` TextDrawable textView =...
@RohitK1992 Use this [TextDrawable.java](https://github.com/devunwired/textdrawable/blob/master/sample/src/main/java/com/example/textdrawable/drawable/TextDrawable.java) custom class to set text to CircleButton. `CircleButton circleButton = findViewById(R.id.cbcircle);` `TextDrawable text= new TextDrawable(this);` `text.setText("Hi");` `circleButton.setImageDrawable(text);`