Gaurav Gupta
Gaurav Gupta
` chips_input = findViewById(R.id.chips_input); chips_input.setChipDetailsBackgroundColor(ColorStateList.valueOf(Color.BLACK)); chips_input.setChipDetailsTextColor(ColorStateList.valueOf(Color.BLACK)); `
Yes that's the default behaviour! you can use `setDelimiter()` method but, unfortunately that's not present anywhere in the source code. :'(
```java chipInput.getEditText().setTextSize(14); // not gonna work Log.d("XXX", "" + chipInput.getEditText().getTextSize()); ``` `D/XXX: 32.0`
> use simple one and make few nested chunk. `new MaterialShowcaseView.Builder(MainActivity.this) .setTarget(findViewById(R.id.fetch_button)) .setDismissText("Oh! I See") .setContentText("Smash this button to see all the products of this shop.") .setDelay(1000) .singleUse("First") .renderOverNavigationBar() .setMaskColour(getResources().getColor(R.color.colorPrimaryDark))...