eyeem / chips-android

Chips EditText widget for android
90 stars 24 forks source link

Add method to be able to set custom bubble style in ChipEditText #12

Closed biokys closed 9 years ago

biokys commented 9 years ago

Now it s not possible to change the default style and in my layout, where the text is black and background is white, the ChipEditText is useless. :-(

wonsuc commented 9 years ago

There are several options with "DefaultBubbles" class.

public static int LILA = 0;
public static int GRAY = 1;
public static int GRAY_WHITE_TEXT = 2;
public static int GREY_EDIT = 3;
public static int GREEN = 4;
public static int CITY_COUNTRY = 5;

plus, I just edited original source and It is not that hard to adapt custom style to the Bubbles.

vishna commented 9 years ago

@biokys I agree, I will try to find more time to make ChipEditText more customizable and also configurable through xml.